我目前正在尝试实现一个ViewPager
. 我在 ViewPager 中有两个页面,它们都包含许多文本字段、复选框、按钮和微调器。
假设这两个 XML 文件是layout1.xml
和layout2.xml
. 它们都有带有 IDcheckbox1
和的复选框checkbox2
。有没有办法按照以下方式调用某些东西
Checkbox check1 = (CheckBox) findViewById( R.layout.layout1.id.checkbox1 );
Checkbox check2 = (Checkbox) findViewById( R.layout.layout2.id.checkbox2 );