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>