我一直在尋找使我的listview工作的方式。我用了幾乎所有我知道的東西和我在這裏看到的東西。我使用了代碼和XML標籤,但它仍然不起作用。我一直在改變在xml中放置那些blockdecendants,focusable,clickable標籤的位置。如何使listview onitemclicklistener工作?
這裏是我的相關代碼:
lstMeals = (ListView)findViewById(R.id.lstMeals);
lstMeals.setItemsCanFocus(true);
lstMeals.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
這是與列表視圖的XML:
<?xml version="1.0" encoding="utf-8"?>
<com.flipboard.bottomsheet.BottomSheetLayout
android:id="@+id/bottomsheet"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ProgressBar
android:id="@+id/pgMeals"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="invisible"
android:layout_centerInParent="true" />
<TextView
android:id="@+id/txtMNoRecord"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="invisible"
android:layout_centerInParent="true" />
<ListView
android:id="@+id/lstMeals"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:clickable="true"/>
</RelativeLayout>
</com.flipboard.bottomsheet.BottomSheetLayout>
這是適配器的佈局:
<?xml version="1.0" encoding="utf-8"?>
<com.flipboard.bottomsheet.BottomSheetLayout
android:id="@+id/bottomsheet"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:descendantFocusability="blocksDescendants">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/mealInfo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp">
<RelativeLayout
android:id="@+id/relativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true">
<ImageView
android:id="@+id/imgMeal"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginRight="8dp"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"/>
<RelativeLayout
android:id="@+id/picLayout"
android:layout_width="200dp"
android:layout_height="70dp"
android:layout_alignBottom="@+id/imgMeal"
android:layout_alignParentBottom="false"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<TextView
android:id="@+id/txtWatermark"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:gravity="center"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:text="Large Text"
android:textColor="#ffffff"
android:textSize="25sp"
android:textStyle="bold"
android:textIsSelectable="false"/>
<TextView
android:id="@+id/txtWatermark2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="false"
android:layout_centerVertical="true"
android:gravity="center_vertical|center_horizontal"
android:text="Large Text"
android:textSize="30sp"
android:textStyle="bold"
android:visibility="gone"
android:textIsSelectable="false"/>
</RelativeLayout>
</RelativeLayout>
<TextView
android:id="@+id/adptrMealName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginBottom="8dp"
android:layout_toEndOf="@+id/relativeLayout"
android:layout_toRightOf="@+id/relativeLayout"
android:text="TextView"
android:textColor="@color/black80"
android:textSize="24sp"
android:textStyle="bold"
android:textIsSelectable="false"/>
<TextView
android:id="@+id/txtMealDesc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/txtMealPrice"
android:layout_marginBottom="10dp"
android:layout_toEndOf="@+id/relativeLayout"
android:layout_toRightOf="@+id/relativeLayout"
android:text="TextView"
android:textColor="@color/black70"
android:textSize="24sp"
android:textIsSelectable="false"/>
<Button
android:id="@+id/btnViewIngredients"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/txtMealDesc"
android:paddingBottom="15dp"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:paddingTop="15dp"
android:text="View Ingredients"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"/>
<TextView
android:id="@+id/txtMealPrice"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/adptrMealName"
android:layout_marginBottom="8dp"
android:layout_toEndOf="@+id/relativeLayout"
android:layout_toRightOf="@+id/relativeLayout"
android:text="TextView"
android:textColor="@color/black70"
android:textSize="24sp"
android:textIsSelectable="false"/>
</RelativeLayout>
</RelativeLayout>
</com.flipboard.bottomsheet.BottomSheetLayout>
在您的適配器類中的點擊監聽器底部表單上寫下 – user2025187
爲什麼我應該放一個onclicklistener?不能正常工作的是listview。 –