0

嘿伙计们,我使用两种布局,一种通过主布局文件中的“包含”嵌入。我希望在主 xml 的活动中的嵌入式设置中设置 TextView。这是我到目前为止想出的......

主要 xml:date_list_layout.xml

<RelativeLayout android:id="@+id/RelativeLayout01"
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent"
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:background="@drawable/bgoption">

<include layout="@layout/cur"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />

</RelativeLayout>

嵌入的 xml:cur.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

  <TextView android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:id="@+id/currency"  
  android:textSize="14px"
  android:paddingLeft="10dp"
  android:textColor="#d17375"
  ></TextView>

</LinearLayout>

然后我的活动代码将内容设置为主xml,但尝试膨胀嵌入的内容以设置文本如下......

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.date_list_layout);

View v  = LayoutInflater.from(getBaseContext()).inflate(R.layout.cur,
            null);

    TextView currency = (TextView) v.findViewById(R.id.currency);
    currency.setText("test");

}

我没有收到任何错误,但 TextView 仍然为空。任何想法我做错了什么

谢谢

4

2 回答 2

1

您可以直接在 TextView 中使用 setText。无需在活动中调用 LayoutInflater。

setContentView(R.layout.date_list_layout);

 TextView 货币 = (TextView) v.findViewById(R.id.currency);
 货币.setText(“测试”);

于 2017-10-24T08:00:36.210 回答
0

只需直接使用TextView

 TextView currency = (TextView) findViewById(R.id.currency);

一旦你有了included cur.xml,你就不再需要手动充气了。它会自动插入到结构中,因此您可以安全地删除附加LayoutInflater调用。

于 2013-06-04T12:18:36.813 回答