嘿伙计我使用两个布局,一个通过主布局文件中的'include'嵌入。 我希望在主xml的活动中将嵌入的TextView设置为。这是我到目前为止所提出的......
Main 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>
然后我的Activity代码将内容设置为主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仍为空。任何想法我做错了
由于 甲
答案 0 :(得分:1)
您可以直接在TextView中使用setText。不在活动中调用LayoutInflater。
setContentView(R.layout.date_list_layout); TextView currency = (TextView) v.findViewById(R.id.currency); currency.setText("test");
答案 1 :(得分:0)
直接使用TextView
:
TextView currency = (TextView) findViewById(R.id.currency);
获得include
d cur.xml 后,您不再需要手动充气。它会自动插入到结构中,因此您可以安全地删除其他LayoutInflater
来电。