Hallo,
ich habe eine ListActivity welche mir meine Daten anzeigt die in meiner sqlite DB stehen.
jetzt würde ich aber auch gerne die ganze zeile mit einem LongClick auswählen(ContextMenu) nur leider lässt sich meine Zeile nicht mehr auswählen ... das geht anscheinend nur wenn genau ein TextView in der Zeile ist ...
in der HTC Googlemail App kann man aber trotz Checkbox,TextView usw eine Zeile auswählen
hier mein Row Layout:
Code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp" >
<CheckBox
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/result_gameid"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/result_homeres"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/result_guestres"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<TextView
android:id="@+id/result_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
Alles anzeigen