Question

In my fragment i have a listview and when i click would open another activity that correspond at the item in the list.. But actually doesn't work and when i click nothing happen.

@SuppressLint("NewApi")
    protected void onListItemClick(ListView l, View v, int positionItem, long id) {

        Sensor sensor = sensorAdapter.getItem( positionItem ).getSensor();
        String sensorName = sensor.getName();
        Intent i = new Intent(getActivity(), SensorMonitor.class); 
        startActivity(i);
        i.putExtra( "sensorname",sensorName );
        startActivity( i );
    }

Any help? the logCat say nothing if you want to ask me.. I can click but nothing happen.. I also added in the textview of listview:

android:focusableInTouchMode="false"
    android:clickable="false"
    android:focusable="false"

But nothing

EDIT:

This is the custom textview of the listview:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/text1"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:layout_margin="10dp"
    android:fontFamily="sans-serif-light"
    android:gravity="center_vertical"
    android:padding="10dp" />

And this is the fragment xml in which there is the listview:

<?xml version="1.0" encoding="utf-8"?> 

        <LinearLayout 
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" > 

            <!-- Included header.xml here -->
    <TableLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"    
        android:paddingTop="@dimen/activity_vertical_margin"
         >
            <TextView
            android:id="@+id/titolodevicefragment"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:textColor="#DB3232"
            android:textSize="18dp"
            android:fontFamily="sans-serif-condensed"
            android:text="@string/titolosensorsfragment" />

            <ListView
                android:id="@+id/listView1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" /> 
         </TableLayout>
        </LinearLayout>
Was it helpful?

Solution

try to implement listview.setonItemClickListener. It should definitly work.Otherwise there seems no problem

   list.setOnItemClickListener(new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView&lt;?&gt; parent, View view,
                int position, long id) {

        }
    });
    }

OTHER TIPS

Why are you settings these to false ? :

android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"

You should set them to true instead

May be you ListView item contains hasFocusable view.
Please see below link.
https://stackoverflow.com/a/20188525/596555 ,may be help you.

I have always read to use adapter and the related adapter listener. It's from 2010 IO so maybe it's not the most recent, but I learn my listview here and it works great

Remove these attributes :

android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"

Add this attribute to your root layout:

android:descendantFocusability="blocksDescendants"

Edit:

Insert in the root LinearLayout

    <?xml version="1.0" encoding="utf-8"?> 

            <LinearLayout 
                xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"
android:descendantFocusability="blocksDescendants" > 

                <!-- Included header.xml here -->
        <TableLayout 
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:paddingBottom="@dimen/activity_vertical_margin"    
            android:paddingTop="@dimen/activity_vertical_margin"
             >
                <TextView
                android:id="@+id/titolodevicefragment"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:textColor="#DB3232"
                android:textSize="18dp"
                android:fontFamily="sans-serif-condensed"
                android:text="@string/titolosensorsfragment" />

                <ListView
                    android:id="@+id/listView1"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content" /> 
             </TableLayout>
            </LinearLayout>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top