1

「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>
4

1 に答える 1

1

ビューを追加するときは、TextView自体のレイアウトパラメータを指定していません。

試す:

(LinearLayout) convertView.addView(tv, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);

API <8をターゲットにしている場合は、MATCH_PARENTをFILL_PARENTに変更します。これは、コンテンツを垂直方向にラップすることも想定しています。

于 2012-09-11T02:55:28.527 に答える