在我的片段中,我有一個列表視圖,當我點擊會打開另一個活動,對應列表中的項目..但實際上不工作,當我點擊什麼都沒有發生。onListItemClick監聽器不工作
@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);
}
任何幫助?在logcat的說什麼,如果你要問我..我可以點擊,但沒有發生。我在列表視圖的TextView中還增加了:
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
但沒有
編輯:
這是列表視圖的自定義的TextView:
<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" />
這是XML片段,其中有列表視圖:
<?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>
機器人:focusableInTouchMode =「假」 機器人:可點擊=「假」 機器人:可調焦=「假」使所有真正的.. – Avijit
現在我不能點擊該項.. –
而不是getActivity()在意圖使用getApplicationContext() – Avijit