我有一个视图,从自定义布局膨胀,其中包含一个TextView
. 我尝试TextView
通过字符串资源从 xml 设置文本,并在布局膨胀后以编程方式设置文本 - 我仍然只得到android.widget.RelativeLayout@4166f2d8
而不是普通文本。我究竟做错了什么?
xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layers_list_item_root"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp" >
<CheckBox
android:id="@+id/layers_list_item_switch"
blablabla... />
<TextView
android:id="@+id/layers_list_item_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
android:layout_toLeftOf="@id/layers_list_item_switch"
android:selectAllOnFocus="true"
android:text="@string/layers_list_default_text"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:scrollHorizontally="true"
android:textColor="@android:color/black"
android:textSize="16sp"
android:textStyle="bold"
android:typeface="serif"
android:clickable="true" />
</RelativeLayout>
查看充气方式:
public View createLayerListItem (String text) {
View v = View.inflate(this, R.layout.layers_list_item, null);
TextView text_view = (TextView) v.findViewById(R.id.layers_list_item_text);
text_view.setText(text);
return v;
}
这个视图用于填充一些ListView
:
ListView layers_list = (ListView)layers_dialog.findViewById(R.id.layers_list);
ArrayAdapter<View> adapter = new ArrayAdapter<View>(this, R.layout.layers_list_item, R.id.layers_list_item_text);
adapter.add(createLayerListItem("Test 1"));
adapter.add(createLayerListItem(""));
adapter.add(createLayerListItem("Very very very very very very long line"));
我TextViews
都错了,显示android.widget.RelativeLayout@4166f2d8
。我还尝试使用 xml 中的默认文本,而不是从代码中更改它——我仍然没有从资源中获取文本,只有地址。