4

我试图在 a 的上下文中了解 Android 布局ListView,如果我想在由名称和计数,如下所示:

我会在 WP8 / WPF / Silverlight 中使用这种 XAML:

<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Height="*" />
        <ColumnDefinition Height="Auto" />
    </Grid.ColumnDefinitions>

    <TextBlock Grid.Column="0" x:Name="Thing" />
    <TextBlock Grid.Column="1" x:Name="Count" />
</Grid>

但是,Android Layout 似乎无法做到这一点 - 我尝试使用RelativeLayout,但似乎其中一个或另一个总是全尺寸,而另一个会被吃掉。

4

3 回答 3

4

你想要这样的东西吗?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:text="Thing" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:text="Count" />

</RelativeLayout>

或者您可以使用 aLinearLayout和 set weights

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="4"
        android:text="Thing" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Count" />

</LinearLayout>

或者您可以使用GridView,developer.android.com 上有一个很好的示例

于 2013-01-29T02:07:50.330 回答
1

晚会迟到了。GridView我不是只有 2 列的超级粉丝。我建议在每个列表项布局中使用带有加权视图的 ListView。TableLayout 也可能适合,但我的示例由于某种原因无法滚动。单击初始屏幕上的按钮以进入 ListView 示例。

我很快更改了一些我放置的测试代码以适合您的示例 -请参见此处

于 2013-01-29T06:57:29.047 回答
1

事情就是这样。除了网格中每条记录的单个字符串之外的任何东西都需要一些特殊的东西。这无论如何都不是完美的代码,但它会有所帮助。

让我们从您的基本布局开始。

假设这是在名为 mainlist.xml 的东西中

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >


    <ListView
        android:id="@+id/itemList"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        />
</RelativeLayout>

所以在这里你有一个带有 ListView 的亲戚。很基本吧?

在您的活动中,您将需要一些这样的代码。

@Override
public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);   
     setContentView(R.layout.mainlist);
     GetAndAssociateData();
}

public void GetAndAssociateData() {
      ListView list = (ListView)findViewById(R.id.itemList);
      final ArrayList<CountedItem> items;
      list.setAdapter(new CountedItemAdapter(getApplicationContext(), R.id.countedItemRow, items, this));   
 }

该单个字符串项之外的任何内容不仅需要一个适配器,还需要每个项的布局。

CountedItemAdapter 在这种情况下是适配器(它告诉如何填充视图)。

countedItemRow 是每个项目的布局。

/src/CountedItemAdapter.java

public CountedItemAdapter(Context context,int textViewResourceId, ArrayList<CountedItem> objects,CountedItemActivity parentActivity) {
        super(context,  textViewResourceId, objects);
        this.context = context;
        this.items = objects;
        this.parentActivity = parentActivity;
        // TODO Auto-generated constructor stub
    }

public View getView(int position, View convertView, ViewGroup parent) {
    View view = convertView;
    if (view == null) {
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        view = inflater.inflate(R.layout.countedItemRow, null);
    }
    if (items != null){
        CountedItem item = items.get(position);
        if (item != null) {
            TextView thing= (TextView) view.findViewById(R.id.thing);
            if (thing!= null)
            {
                thing.setText(item.GetThingText());
            }
            TextView thingCount = (TextView) view.findViewById(R.id.thingCount);
            if (thingCount != null)
            {
                thingCount .setText(item.GetThingCount());
            }

        }
    }

    return view;
}

/res/layout/countedItemRow.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/countedItemRow"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
<TextView
    android:id="@+id/thing"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="0dp"
    android:layout_y="0dp"
     />

<TextView
    android:id="@+id/thingCount"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="0dp"
    android:layout_y="150dp"
    />
</RelativeLayout>
于 2013-01-29T02:26:16.820 回答