我需要在我的Android应用程序中创建一个更高级的列表,每个项目只包含一个字符串。实际上,我正在寻找与日历应用程序中的约会视图类似的东西:我希望按日对我的项目进行分类,并显示类似于约会时间的内容。
不知道如何解决这个问题,我猜这个ListActivity是不可能的?
你们有什么建议?
修改 如果有人可以提供代码示例,我真的很感激,我不确定如何执行当前回复中建议的内容。
答案 0 :(得分:2)
使用ListACtivity很容易实现。您需要在其中创建一个子类,它扩展ArrayAdapter(或任何其他列表适配器)并覆盖它的getView()方法。您将需要创建一个xml文件,为每个列表项定义“视图”。然后在重写的getView()方法中,您需要对该视图进行膨胀,然后对要为其赋值的每个元素使用findViewById()。
public class YourListActivity extends ListActivity {
private String[] values = new String[]{"Row 1", "Row 2", "Row 3"};
private class Adapter extends ArrayAdapter<String> {
private LayoutInflater li = LayoutInflater.from(this.getContext());
public Adapter() {
super(YourListActivity.this, 0, values);
}
@Override
public View getView(int position, View convertView, ViewGroup parent){
View v = li.inflate(R.layout.row, parent);
TextView field1 = (TextView) v.findViewById(R.id.field1);
field1.setText(values[position]);
return v;
}
}
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setListAdapter(new Adapter());
}
}
row.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/field1"
/>
</LinearLayout>
main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@android:id/list"
/>
</LinearLayout>
您可以通过向row.xml添加其他TextView,并使用传递给position
的{{1}}来设置值,从而进一步修改行的外观及其包含的字段。您可以根据需要添加额外的字段,如果需要,甚至可以逐行自定义行。
答案 1 :(得分:1)
去年Google I / O的录制讲话解释了您想要了解的内容:http://www.google.com/events/io/2010/sessions/world-of-listview-android.html
答案 2 :(得分:0)
创建ListAdapter。这是负责为列表提供UI元素的类。使用getView,您可以创建自己喜欢的任何视图。如果您有多种类型的列表元素,请注意不要重用getView接收的convertView。