0

カスタム UI を備えた Expandablelistview があります。BaseExpandableListAdapter を拡張したアダプターを定義しました。グループビューの高さを正確に 25 dp にしたいのですが、高くなっています

私のxmlは`です

<TextView
    android:id="@+id/product_name"
    android:layout_width="0dp"
    android:layout_height="25dp"
    android:layout_weight="2"
    android:gravity="center_vertical"
    android:paddingLeft="15dp"
    android:text="@string/products"
    android:textSize="12sp"
    android:textStyle="bold" />

<TextView
    android:layout_width="0dp"
    android:layout_height="25dp"
    android:layout_marginLeft="25dp"
    android:layout_weight="1"
    android:gravity="center"
    android:text="@string/weight_g"
    android:textSize="12sp"
    android:textStyle="bold" />

<TextView
    android:layout_width="0dp"
    android:layout_height="25dp"
    android:layout_weight="1.6"
    android:gravity="center"
    android:text="@string/measure"
    android:textSize="12sp"
    android:textStyle="bold" />

`

そして私のコード

@Override
    public View getGroupView(final int groupPosition,
            final boolean isExpanded, final View convertView,
            final ViewGroup parent) {
        final View view = View.inflate(context,
                R.layout.header_measurements, null);

        final TextView title = (TextView) view
                .findViewById(R.id.product_name);
        title.setText(data.get(groupPosition).categoryName);

        return view;
    }
4

1 に答える 1

0

あなたは最も重要な部分を省略しました。XMLのテキストビューのコンテナ(LinearLayoutまたはRelativeLayoutなど)は何を言っていますか?レイアウトの高さは、android:layout_height="25dp"または android:layout_height="wrap_content"

于 2012-11-26T00:04:58.413 に答える