我创建了扩展“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>