カスタマイズされたアダプターを使用する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>
adapteror_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>
これを試してフォーカスを取得します:View.getFocus();
Androidでは、フォーカス可能な要素(buttons)を含むリストアイテムを選択することはできません。ボタンのxml属性を次のように変更します。
Android:focusable="false"
それでもクリックできるはずですが、フォーカスを取得できません...
RadioButtonのみを含むListViewでも同じ問題が発生しました。
<?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に向けられます。
この答えはここで私のために働きました: https://stackoverflow.com/a/16536355/5112161
主に彼はLinearLayoutまたはRelativeLayoutに以下を追加しました:
Android:descendantFocusability="blocksDescendants"
次のすべてのxmlからも削除する必要があります。
Android:focusable="false"
Android:focusable="true"
Android:clickable="true"
Android:clickable="false"
コメントを追加して回答を不快にしたかったのですが、評判がよくありません。
ArrayAdapterを拡張するカスタムアダプターを使用している場合は、クラスのareAllItemsEnabled()およびisEnabled(int position)で上書きできます。
@Override
public boolean areAllItemsEnabled() {
return true;
}
@Override
public boolean isEnabled(int position) {
return true;
}
上記は私の非クリック可能なリストビューを修正しました。 「Androidのリストはクリックできません」という検索用語がGoogleで非常に高いため、このコメントは他の人にも役立つかもしれません。
Android:textIsSelectable = "true"を指定してテキスト値を選択可能にすることを検討してください
グーグルに耳を傾けないでください。行のレイアウトで、設定
textIsSelectable="false"
リントありがとう(ない!)
リストビュー内のビューとボタンを使用していたので、以下を使用しました。
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();
}
};
リストビューの項目はクリック可能です。これを使用するには、リストビューで項目クリックリスナーを設定する必要があります。その後、動作します。
私はかなり遅いですが、これについて興味深いと思う何かを発見しました:
アダプターがArrayAdapterから派生した場合、私が試したように、onItemClickListenerは呼び出されません。
ただし、アダプターがBaseAdapterから派生している場合(したがって、getCount()およびgetItem()を実装する必要があり、配列の場合は簡単です)、常にISが呼び出されます。
私にとっての問題は、ListView内のアイテムのclickable
がtrue
に設定されていることでした。