我不太确定我的问题是否真的与此有关listview
。有一个名为Gleeo Time Tracker的应用程序,这里有它的屏幕视图。当您按下符号"+"
时,将创建一个新项目,您可以删除一个项目通过按。"-"
更多是当我单击项目左侧的记录按钮时,背景会改变。
我的问题是,列表视图到底是什么?我怎样才能做到这一点?谢谢大家!
我不太确定我的问题是否真的与此有关listview
。有一个名为Gleeo Time Tracker的应用程序,这里有它的屏幕视图。当您按下符号"+"
时,将创建一个新项目,您可以删除一个项目通过按。"-"
更多是当我单击项目左侧的记录按钮时,背景会改变。
我的问题是,列表视图到底是什么?我怎样才能做到这一点?谢谢大家!
阅读开发人员文档中的列表视图,这是一个示例
您想要做的是构建一个自定义 ListView。这是通过提供一个布局文件来完成的,例如
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/transparent">
<ImageView android:id="@+id/Plus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent" />
<TextView android:id="@+id/Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent" />
</LinearLayout>
然后通过覆盖其 Adapter 的 getView() 方法将此布局应用于 ListView 的每一行,例如:
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater) MyActivity.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.row, null);
}
ImageView plus = (ImageView) v.findViewById(R.id.plus);
icon.setImageDrawable(BrowseActivity.this.getResources().getDrawable(R.drawable.plus));
TextView title = (TextView) v.findViewById (R.id.Browse_FileName);
// add a listener to your button and you're done
return v;
}