コードでボタンやテキストボックスを配置してIDを設定する方法
コード
Button button1 = new Button(getBaseContext());
button1.setId(View.generateViewId());
Expected resource of type id less…
Ensures that resource id’s passwd to APIs are of the right type; for example, calling Resources.getColor(R.string.name) is wrong.
View.generateViewId()
以上、コードでボタンやテキストボックスを配置してIDを設定する方法についてでした。