从膨胀的布局中获取Textview的ID

时间:2013-04-11 10:22:55

标签: android layout-inflater

我有一个像这样的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);

0 个答案:

没有答案