我在stackoverflow中阅读了很多关于这个问题的文章,但我没有解决我的问题。我有ListView有行,每行有3个图像按钮,当我点击我的图像按钮代码“setOnItemClickListener”时不起作用。
我需要点击行中的哪个项目(图像按钮)。在我的ListView中会有很多行。
我听说过simpleCursorAdapter,fragmentlist,cursorloader,但是我的min需要的SDK是10 。
在此代码中,我使用了6张图片,但我将使用更多图片(100张)。
我的java代码:
package foxstrot.ghp;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
public class images extends Activity {
int[] images = {R.raw.a2, R.raw.a3, R.raw.im2, R.raw.a4, R.raw.a5, R.raw.im6,};
ListView lv;
Intent i = new Intent(this, king.class);
final String LOG_TAG = "L";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.images);
lv = (ListView) findViewById(R.id.lv);
ArrayList<Map <String, Object>> data = new ArrayList<Map<String, Object>>(images.length);
Map<String, Object> m;
for(int i = 0; i < images.length; i++){
m = new HashMap<String, Object>();
m.put("image1", images[i]);
m.put("image2", images[i+1]);
m.put("image3", images[i+2]);
i = i + 2;
data.add(m);
}
String[] from = {"image1","image2","image3"};
int[] to = {R.id.ib1, R.id.ib2, R.id.ib3};
SimpleAdapter sAdapter = new SimpleAdapter(this, data, R.layout.a_, from, to);
lv.setAdapter(sAdapter);
lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
i.putExtra("id", id);
startActivity(i);
Log.d(LOG_TAG, "itemClick: position = " + position + ", id = "
+ id);
}
});
}
}
我的XML代码(在适配器中使用的容器)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="125dp"
>
<ImageButton
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/ib1"
android:layout_weight="1"
android:scaleType="fitXY"
/>
<ImageButton
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/ib2"
android:layout_weight="1"
android:scaleType="fitXY"
/>
<ImageButton
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/ib3"
android:layout_weight="1"
android:scaleType="fitXY"
/>
</LinearLayout>
答案 0 :(得分:0)
在images.xml
布局文件中,将ImageButtons
的{{1}}和clickable
属性设置为focusable
。按钮上的按钮现在将被传递并由false
处理。
ListView
答案 1 :(得分:0)
setOnItemClickListener()
用于检测列表ITEMS(行)上的点击次数,而不是您对这些项目(行)上的特定按钮的点击次数。
对于xml上每行的每个按钮,您需要添加一个onClick属性以及处理点击的函数:android:onClick="myFunction"
。
您的活动必须创建一个功能:
public void myFunction(View v) {...}
如果您需要传递有关单击哪一行的特定信息,可以在适配器的getView()
方法的按钮视图上添加标记。有关此检查的更多信息,请访问:How do I get the row ID of the row from a ListView, which contains a clickable item?