“ArrayAdapter需要资源ID是一个TextView”xml的问题
试图设置我的视图来显示我想要显示的文件(文本文件)的ListView
时出现错误。 我很确定它与xml有关。 我只想显示来自this.file = fileop.ReadFileAsList("Installed_packages.txt");
。 我的代码:
public class Main extends Activity { private TextView tv; private FileOperations fileop; private String[] file; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.fileop = new FileOperations(); this.file = fileop.ReadFileAsList("Installed_packages.txt"); setContentView(R.layout.main); tv = (TextView) findViewById(R.id.TextView01); ListView lv = new ListView(this); lv.setTextFilterEnabled(true); lv.setAdapter(new ArrayAdapter<String>(this, R.layout.list_item, this.file)); lv.setOnItemClickListener(new AdapterView.OnItemClickListener() { public void onItemClick(AdapterView<?> parent, View view, int position, long id) { // When clicked, show a toast with the TextView text Toast.makeText(getApplicationContext(), ((TextView) view).getText(), Toast.LENGTH_SHORT).show(); } }); setContentView(lv); } }
list_item.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" android:orientation="vertical" android:padding="10dp" android:textSize="16sp" android:textColor="#000"> </LinearLayout>
main.xml :
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:weightSum="1"> <ScrollView android:id="@+id/SCROLLER_ID" android:layout_width="fill_parent" android:layout_height="wrap_content" android:scrollbars="vertical" android:fillViewport="true"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5sp" android:id="@+id/TextView01" android:text="@string/hello"/> </ScrollView> </LinearLayout>
ArrayAdapter要求资源ID是TextView XMLexception,这意味着您不提供ArrayAdapter
。 当你使用这个构造函数时:
new ArrayAdapter<String>(this, R.layout.a_layout_file, this.file)
R.Layout.a_layout_file
必须是只包含TextView
的xml布局文件的id( TextView
不能被另一个布局包裹,比如LinearLayout
, RelativeLayout
等等),就像这样:
<?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" // other attributes of the TextView />
如果你希望你的列表行布局有点不同,那么一个简单的TextView
小部件使用这个构造函数:
new ArrayAdapter<String>(this, R.layout.a_layout_file, R.id.the_id_of_a_textview_from_the_layout, this.file)
提供可以包含各种视图的布局的id
,但是还必须包含一个带有和id
(第三个参数)的TextView
,并传递给ArrayAdapter
以便它可以知道将Strings
放在行布局中的位置。
Soution在这里
listitem.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:id="@+id/textview" android:layout_width="match_parent" android:layout_height="match_parent" > </TextView> </LinearLayout>
Java代码:
String[] countryArray = {"India", "Pakistan", "USA", "UK"}; ArrayAdapter adapter = new ArrayAdapter<String>(this, R.layout.listitem,R.id.textview, countryArray); ListView listView = (ListView) findViewById(R.id.listview); listView.setAdapter(adapter);
- Android – 多个可视项目的水平滚动
- 在应用程序中集成MuPDF Reader
- 查找由android平台主题定义的所有可用样式
- Android Paint:.measureText()vs .getTextBounds()
- 调用setCurrentItem(0)时,onPageSelected不会被触发
- Android RecyclerView:notifyDataSetChanged()IllegalStateException
- 如何在Windows 8 API 21和19上运行Intel x86 Atom的Android模拟器,而无需硬件加速?
- “px”,“dip”,“dp”和“sp”有什么区别?
- 如何在播放前在videoview中设置预览图像