1

我使用此布局是为了获得三个固定视图:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:textColor="#372c24" 
        android:paddingLeft="10dp"/>

    <View
        android:id="@+id/space"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="5"
        android:background="@android:color/transparent" />

    <LinearLayout
        android:id="@+id/ratingLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="4"
        android:orientation="horizontal" 
        android:background="@drawable/shape_popup">
        <TextView
            android:id="@+id/rateNumber"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:gravity="center_horizontal"
            android:paddingTop="2dp" 
          />
        <ImageView
            android:contentDescription="@string/app_name"
            android:id="@+id/rateStar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:layout_gravity="center_horizontal"
            android:src="@drawable/rate_star"/>
    </LinearLayout>

</LinearLayout>

我希望我ratingLayout包装它的内容但不超过它的固定大小。那可能吗?

4

2 回答 2

0

例如

   convertView = inflator.inflate(R.layout.item_grid, null);

                LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
                        imageSize, imageSize);
                convertView.setLayoutParams(new GridView.LayoutParams(params));

或(例如)

android:layout_height="20dp"
于 2012-12-17T09:16:32.567 回答
0

移除 ratingLayout 的权重,并将 rateNumber 和 rateStar 视图的 layout_width 属性设置为“wrap_content”而不是“match_parent”。

于 2012-12-17T10:21:31.537 回答