我有一个这样的xml:
item.xml 的代码如下:
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_item_title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingTop="15dip"
android:paddingBottom="15dip"
android:paddingLeft="15dip"
android:textSize="24sp"/>
现在我的活动中有不同的 setcontentView,现在我试图获取这个 textview 的 id 来设置 textview 的字体和颜色。
我试过这个但不工作:
View inflatedView = getLayoutInflater().inflate(R.layout.item, null);
TextView tv = (TextView) inflatedView.findViewById(R.id.list_item_title);
tv.setTextColor(Color.RED);