コードでボタンやテキストボックスを配置してIDを設定する方法について

f:id:moshimore:20170715041846j:plain
コードでボタンやテキストボックスを配置して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を設定する方法についてでした。