事情就是这样。除了网格中每条记录的单个字符串之外的任何东西都需要一些特殊的东西。这无论如何都不是完美的代码,但它会有所帮助。
让我们从您的基本布局开始。
假设这是在名为 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>