我有一个加载了AsyncTask的CustomListView。 我有一个imageButton到每行的末尾。
我的问题:当我点击我的imageButton时,没有任何效果。 我试过很多像这样的解决方案:
Android : how to set listener and get position of imagebutton click in a custom adapter
我的ListView类调用AsyncTask:
public class listview extends Activity {
private ListView maListViewPerso;
ImageButton imgButton;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ActionBar actionBar = getActionBar();
actionBar.setBackgroundDrawable(new ColorDrawable(Color
.parseColor("#000000")));
maListViewPerso = (ListView) findViewById(R.id.listviewperso);
asyncTask asynchrone_task_tournee = new asyncTask(listview.this, maListViewPerso);
asynchrone_task_tournee.execute();
}
这是我的imageButton,我想获得位置并设置一个监听器..
编辑1 (回答评论)这是我的onPostExecute()
,还有我的SimpleAdapter:
@Override
protected void onPostExecute(JSONArray jArray) {
super.onPostExecute(jArray);
JSONObject json_data=null;
HashMap<String, String> map;
ArrayList<HashMap<String, String>> listItem = new ArrayList<HashMap<String, String>>();
this.pDialog.dismiss();
Log.i("JSON_TOURNER",jArray.toString());
for(int i=0;i < jArray.length();i++)
{
try {
json_data = jArray.getJSONObject(i);
map = new HashMap<String, String>();
map.put("titre", json_data.getString("time"));
map.put("description", json_data.getString("date"));
map.put("begin_hour", json_data.getString("hour"));
map.put("end_hour", json_data.getString("hour"));
listItem.add(map);
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
SimpleAdapter mSchedule = new SimpleAdapter (Mycontext, listItem, R.layout.list_type_tournee,
new String[] {"titre", "description","begin_hour","end_hour"}, new int[] {R.id.miscellaneous, R.id.infos,R.id.begin_hour,R.id.end_hour});
listview.setAdapter(mSchedule);
}
答案 0 :(得分:0)
好的,如果您在ImageButton
中使用CheckBox
,Button
,ListView
等控件,那么您将遇到问题here和{{ 3}}
要解决此问题,您需要在android:focusable="false"
的xml中添加ImageButton
。
如果以上操作不起作用,则应将android:descendantFocusability="blocksDescendants"
添加到ImageButton
的父布局中,然后为{{1}实施onClickListener()
}}
了解更多信息,请参阅here。
希望它有所帮助。
答案 1 :(得分:0)
我解决了我的问题。 最后,我删除了imageButton,我在我的线性布局中接受了一个框架布局,我在我的listeView上收听了一个监听器来打开对话框。
我也在我的框架布局的线性父级中使用android:descendantFocusability =“blocksDescendants”