我有ListView
使用自定义适配器,但我无法点击ListView项目..
列表视图的活动..
package com.adhamenaya.projects;
import java.util.ArrayList;
import android.app.Activity;
import android.content.Context;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.Filter;
import android.widget.Filterable;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import com.adhamenaya.classes.Place;
public class PlacesListActivity extends Activity {
private ArrayList<Place> places;
private ArrayList<String> items;
GridviewAdapter mAdapter;
private ListView lvPlaces;
private EfficientAdapter adap;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.places_list);
lvPlaces = (ListView) this.findViewById(R.id.lvPlaces);
new DowanloadPlaces().execute("");
}
private void bindList(ArrayList<Place> places) {
this.places = places;
// Start creating the list view to show articles
items = new ArrayList<String>();
for (int i = 0; i < places.size(); i++) {
items.add(String.valueOf(places.get(i).mName));
}
adap = new EfficientAdapter(this);
adap.notifyDataSetChanged();
lvPlaces.setAdapter(adap);
}
// EfficientAdapter : to make a customized list view item
public class EfficientAdapter extends BaseAdapter implements Filterable {
// The function of inflater to convert objects from XML layout file (i.e. main.xml) to a programmable
LayoutInflater inflater;
Context context;
public EfficientAdapter(Context context) {
inflater = LayoutInflater.from(context);
this.context = context;
}
public int getCount() {
// Get the number of items in the list
return items.size();
}
public Object getItem(int position) {
// To return item from a list in the given position
return items.get(position);
}
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
public View getView(final int position, View convertView,ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
convertView = inflater.inflate(R.layout.adaptor_content, null);
holder = new ViewHolder();// Create an object to hold at components in the list view item
holder.textLine = (TextView) convertView.findViewById(R.id.textLine);
holder.buttonLine = (Button) convertView.findViewById(R.id.buttonLine);
holder.buttonLine.setOnClickListener(new OnClickListener() {
private int pos = position;
public void onClick(View v) {
places.remove(pos);
bindList(places);// to bind list items
Toast.makeText(getApplicationContext(),"Deleted successfuly :)", Toast.LENGTH_LONG).show();
}
});
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
// Bind the data efficiently with the holder.
holder.textLine.setText(String.valueOf(places.get(position).mName));
return convertView;
}
public Filter getFilter() {
// TODO Auto-generated method stub
return null;
}
}
// ViewHolder : class that represents a list view items
static class ViewHolder {
TextView textLine;
Button buttonLine;
}
// DownloadRSSFeedsTask: works in a separate thread
private class DowanloadPlaces extends AsyncTask<String, Void, ArrayList<Place>> {
@Override
protected ArrayList<Place> doInBackground(String... params) {
ArrayList<Place> places = new ArrayList<Place>();
Place p = new Place();
for(int i =0;i<25;i++){
p.mName = "Al Mathaf Hotel";
places.add(p);
}
return places;
}
@Override
protected void onPostExecute(ArrayList<Place> places) {
bindList(places);
}
}
}
places_list.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="match_parent"
android:layout_height="wrap_content"
android:id="@+id/lvPlaces">
</ListView>
</LinearLayout>
adaptor_content.xml布局
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textLine"
android:layout_centerVertical="true"
android:src="@drawable/settings" />
</RelativeLayout>
答案 0 :(得分:137)
Android不允许选择具有可聚焦元素的列表项(按钮)。 将按钮的xml属性修改为:
android:focusable="false"
它应该仍然是可点击的,只是不会获得焦点......
答案 1 :(得分:25)
我对ListView只有一个RadioButton:
有同样的问题<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/userNameRadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
我在每一行中使用RadioButton来显示默认项目选择,以使ListView处理我必须使用的点击次数:
radioButton.setFocusableInTouchMode(false);
radioButton.setFocusable(false);
或在XML文件中:
android:focusable="false"
android:focusableInTouchMode="false"
所以这是一个与焦点相关的问题......使用上面的修饰符,焦点会在点击时指向ListView。
答案 2 :(得分:13)
这个答案对我有用: https://stackoverflow.com/a/16536355/5112161
主要是他在LinearLayout或RelativeLayout中添加了以下内容:
android:descendantFocusability="blocksDescendants"
您还需要从以下所有xml中删除:
android:focusable="false"
android:focusable="true"
android:clickable="true"
android:clickable="false"
答案 3 :(得分:3)
考虑通过指定android来设置文本值:textIsSelectable =“true”
不要听谷歌。在行的布局中,设置
textIsSelectable="false"
谢谢Lint(不!)
答案 4 :(得分:3)
我想对rupps回答添加评论,但我没有足够的声誉。
如果您正在使用扩展ArrayAdapter的自定义适配器,则可以使用类中的areAllItemsEnabled()和isEnabled(int position)覆盖:
@Override
public boolean areAllItemsEnabled() {
return true;
}
@Override
public boolean isEnabled(int position) {
return true;
}
以上修复了我的不可点击列表视图。也许这个评论也可以帮助其他人,因为Google中的“android list not clickable”搜索词很高。
答案 5 :(得分:2)
尝试这个以获得焦点: View.getFocus();
答案 6 :(得分:1)
列表视图项是可点击的。要使用它,您必须在列表视图上设置项目单击侦听器。然后它会工作。
答案 7 :(得分:1)
我已经很晚了但发现了一些我认为有趣的事情:
如果你的适配器从ArrayAdapter下降,就像我试过的那样,不会调用onItemClickListener。
但是,如果您的适配器从BaseAdapter下降(因此您必须实现getCount()和getItem(),对于数组来说是微不足道的),它总是被调用。
答案 8 :(得分:1)
我在列表视图中使用了一个视图和按钮,所以我使用了:
android:focusable="false"
代表<button>
和<view>
...
之后我使用了以下代码作为我的列表视图并且它有效
// Attach the adapter to a ListView
ListView listView = (ListView) findViewById(R.id.shipping_item_list);
listView.setAdapter(adapter);
listView.setOnItemClickListener(listPairedClickItem);
private AdapterView.OnItemClickListener listPairedClickItem = new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
Toast.makeText(getBaseContext(), "Item ", Toast.LENGTH_LONG).show();
}
};
答案 9 :(得分:0)
对我来说,问题是我的ListView中的商品clickable
设置为true
。
答案 10 :(得分:0)
请注意,要在列表视图中具有可点击的项目,所有项目组件必须将 clickable 设置为 false。 在 xml 中 安卓:clickable="false" 节目中 setClickable(false)
答案 11 :(得分:-2)
组 机器人:可点击=“假” 机器人:可聚焦= “FASLE”