我一直在寻找让我的listview工作的方法。我几乎使用了所有我知道的东西和我在这里看到的东西。我使用了代码和XML标记,但它仍然不起作用。我一直在改变在xml中放置那些blockdecendants,可聚焦,可点击标签的位置。
这是我的相关代码:
lstMeals = (ListView)findViewById(R.id.lstMeals);
lstMeals.setItemsCanFocus(true);
lstMeals.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
这是带有listview的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>
答案 0 :(得分:0)
这可能有用......
clubList = (ListView) dialog.findViewById(R.id.club_listview_dialog);
clubList.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
//postion is the position of item clicked in the list
}
});
答案 1 :(得分:0)
将此添加到您的onCreate。
lstmeals.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
Toast.makeText(getApplicationContext(), "Position->" + position + "is selected.", Toast.LENGTH_SHORT).show();
}
});
希望这有帮助。
答案 2 :(得分:0)
非常感谢你的帮助。我已经找到了答案。问题是由底片引起的。它没有被适配器使用,因为活动是显示底部表格的活动。这段代码是我朋友的代码,这就是为什么我不知道有关它的事情。