Dynamically Set ID to a Button in Android
问题 I want to dynamically create a button but am having an issue when it comes to setting an ID for it. I tried putting an integer value in there but keep getting an error that says "Expected Resource of Type ID." The issue is that I DONT want to create this Button in my XML file and yet I need a way to track it with an ID. Please Help. Button changeButton = new Button(getApplicationContext()); changeButton.setText("Change"); changeButton.setId(1);//Keep Getting an error here 回答1: In your res