美好的一天! 我试着从网站上获取新闻列表。我做到了!
但是新闻很长,所以在ListView项目中看不到所有文字。
如何创建多行ListView项目?我需要在项目中看到长字符串。
我的代码:
adapter = new ArrayAdapter<String>(this, R.layout.support_simple_spinner_dropdown_item,
titleList);
@Override
protected void onPostExecute(String result) {
lv.setAdapter(adapter);
Log.i(Consts.TAG_LOG, "onPostExecute");
}
谢谢!
答案 0 :(得分:1)
尝试构建您的个人ArrayAdapter并覆盖他的方法:
View getView(int position, View convertView, ViewGroup parent)
然后将您的个人行布局构建到xml中,在该布局中放置具有多行属性的TextView。 有关自定义适配器和自定义行布局的更多参考,请参阅: http://www.vogella.com/tutorials/AndroidListView/article.html#adapterown