我创建扩展“AdapterView< ListAdapter>”的类A,并创建扩展“BaseAdapter”的类D,提供数据。
问题是每个AdapterView项目的长度都没有延伸到AdapterView的长度,每个项目的长度不同,因为它与项目中文本的长度相同。我设置了所有可以设置为“FILL_PARENT”的布局参数,但这没有意义。
我应该检查哪个班级? AdapterView子类,或BaseAdapter子类,或AdapterView项中的TextView子类? (我将TextView子类化以获得额外的效果)。
getView方法:
public View getView(int position, View convertView, ViewGroup viewGroup) {
ViewHolder holder;
if (convertView == null) {
convertView = LayoutInflater.from(context).inflate(
R.layout.colselector_menu_item, null);
holder = new ViewHolder();
convertView.setTag(holder);
TextView tv = new VerticalTextView(viewGroup.getContext());
tv.setTextColor(Color.RED);
NewsInTimeApp app = (NewsInTimeApp) (((MainActivity) context)
.getApplication());
tv.setTextSize(Integer.parseInt(app.getConfig().get(
AppConfig.CFGNAME_UI_MAIN_COLSELECTOR_TEXTSIZE)));
((LinearLayout) convertView).addView(tv);
holder.groupItem = tv;
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.groupItem.setText(list.get(position).getName());
holder.collId = list.get(position).getId();
return convertView;
}
colselector_menu_item.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#e1e1e1"
android:orientation="horizontal" >
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="@android:color/darker_gray"/>
</LinearLayout>
答案 0 :(得分:1)
添加视图时,您没有为TextView本身指定任何布局参数。
尝试:
(LinearLayout) convertView.addView(tv, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
如果定位API&lt; 8,请将MATCH_PARENT更改为FILL_PARENT。这也假设您希望它们垂直包装内容。