我尝试使用以下代码动态创建listView:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
ViewHolder holder;
if (v == null) {
LayoutInflater vi =
(LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.grid_item, null);
holder = new ViewHolder();
holder.one = (TextView) v.findViewById(R.id.one );
holder.two= (TextView) v.findViewById(R.id.two);
holder.three= (TextView) v.findViewById(R.id.three);
holder.four= (TextView) v.findViewById(R.id.four);
holder.five= (TextView) v.findViewById(R.id.five);
v.setTag(holder);
}
else
holder=(ViewHolder)v.getTag();
final Custom custom = entries.get(position);
if (custom != null) {
holder.one .setText(custom.getOne());
holder.two.setText(custom.getTwo());
holder.three.setText(custom.getThree());
holder.four.setText(custom.getFour());
holder.five.setText(custom.getFive());
}
return v;
}
grid_item.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="0dp"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" >
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:layout_marginRight="4dp" />
<View android:id="@+id/separator"
android:background="#cccccc"
android:layout_width="1dip"
android:layout_height="45dip"
android:layout_marginRight="4dp"/>
</LinearLayout>
<TextView
android:id="@+id/one"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/linearLayout1"
android:layout_toLeftOf="@+id/linearLayout2"
android:text=""
android:textSize="25dp"/>
<TextView
android:id="@+id/two"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/alarmTitle"
android:layout_toRightOf="@+id/linearLayout1"
android:layout_toLeftOf="@+id/linearLayout2"
android:text=""
android:textSize="16dp" />
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="3dp"
android:orientation="vertical" >
<TextView
android:id="@+id/three"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textSize="12dp" />
<TextView
android:id="@+id/four"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textSize="12dp" />
<TextView
android:id="@+id/five"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textSize="12dp" />
<TextView
android:id="@+id/six"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textSize="12dp" />
</LinearLayout>
</RelativeLayout>
我想在listview中创建项目,在我的例子中是relativelayout,可点击。 我试着用:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true">
和/或:
v.setClickable(true);
v.setEnabled(true);
v.setFocusable(true);
但这不起作用。
我犯了错误?
答案 0 :(得分:1)
您可以将点击监听器添加到getView()方法中返回的v
视图
v.setOnClickListener(new OnClickListener(){
public void onClick(View v) {
}....
这应该有效 - 对我有用。内部调用的方法应移到别处。不知道你是否想要在适配器中实现View.OnClickListener,但我认为这取决于你。
干杯