java Android `求这两句的意思 tabLayout = (LinearLayout) this.findViewById(R.id.TabLayout);tabLayout.setBackgroundDrawable(this.getResources().getDrawable(R.drawable.tab01));
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/23 17:35:51
java Android `求这两句的意思 tabLayout = (LinearLayout) this.findViewById(R.id.TabLayout);tabLayout.setBackgroundDrawable(this.getResources().getDrawable(R.drawable.tab01));
java Android `求这两句的意思
tabLayout = (LinearLayout) this.findViewById(R.id.TabLayout);
tabLayout.setBackgroundDrawable(this.getResources().getDrawable(
R.drawable.tab01));
java Android `求这两句的意思 tabLayout = (LinearLayout) this.findViewById(R.id.TabLayout);tabLayout.setBackgroundDrawable(this.getResources().getDrawable(R.drawable.tab01));
tabLayout = (LinearLayout) this.findViewById(R.id.TabLayout);
这行代码就是根据视图的ID来获取控件对象.
你这行代码的话应该是你的布局文件中有个LinearLayout,它的android:id="@+id/TabLayout".
这样在Activity中通过Activity类的findViewById(R.id.TabLayout)获取次LinearLayout.
tabLayout.setBackgroundDrawable(this.getResources().getDrawable(
R.drawable.tab01));
这行代码就是设置你的布局的背景,就是一张图片.
图片是drawable目录下的tab01.