我如何使用value / array.xml中的数据在旋转木马上设置监听器?

时间:2012-02-03 11:43:21

标签: android image drag-and-drop

我的文件array.xml中有12个图像,我想在旋转木马中单击图像时设置一个监听器。我想知道我选择了什么图像?

我的array.xml

resources xmlns:android="http://schemas.android.com/apk/res/android">
<array name="entries">
    <item>@drawable/pic1</item>     
    <item>@drawable/pic2</item>         
    .       
    .                   
</array>    

1 个答案:

答案 0 :(得分:0)

您可以设置图像的位置。 如何显示图像。 在gridview或LIstView中。?

你可以使用它。

setOnItemClickListener(new OnItemClickListener() {
            public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
                Toast.makeText(HelloViewActivty.this, "" + position, Toast.LENGTH_SHORT).show();
            }
        });

一个很棒的教程是Image Display