Hi,

I have a simple ListView in my layout.xml file.

    <ListView android:id="@+id/action_list"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
        />

And in my javacode, I add a setOnItemClickListener() to my listview:

listView.setOnItemClickListener(new OnItemClickListener() {

                public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
                    System.out.println ("get onItem Click position=
"+position);

                }
            });

But when I run on G1. I don't see any print out when I click an item on the
ListView on the phone.
Or when I select an item using track ball and press CENTER.

Can you please tell me why to resolve my problem?

Thanks in advance.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to