单击按钮时,不会显示任何消息,但如果单击列表视图项,然后单击按钮,则会显示该消息。
想要的是通过单击每个listview项目的按钮来更新我的数据库。我在android:focusable="false" android:focusableInTouchMode="false"
按钮中使用了list_items.xml
。
productListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) {
Button saleBtn = (Button) view.findViewById(R.id.sale_btn);
if (saleBtn != null) {
saleBtn .setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(MainActivity.this, "clicked",
Toast.LENGTH_SHORT).show();
}
});
}
}
});
list_items.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="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<Button
android:id="@+id/sale_btn"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:focusable="false"
android:focusableInTouchMode="false"
android:text="Sale"
android:textAppearance="?android:textAppearanceSmall"
android:textStyle="bold" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:orientation="vertical">
<TextView
android:id="@+id/product_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
android:fontFamily="sans-serif-medium"
android:textAppearance="?android:textAppearanceSmall"
android:textColor="#2B3D4D"
android:textStyle="bold"
tools:text="Product" />
<TextView
android:id="@+id/quantity_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
android:fontFamily="sans-serif-medium"
android:textAppearance="?android:textAppearanceSmall"
android:textColor="#2B3D4D"
android:textStyle="bold"
tools:text="Quantity" />
<TextView
android:id="@+id/price_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
android:fontFamily="sans-serif-medium"
android:textAppearance="?android:textAppearanceSmall"
android:textColor="#2B3D4D"
android:textStyle="bold"
tools:text="Price" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
你试过吗
View button = productListView.getChildAt(position).findViewById(R.id.sale_btn);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this, "clicked",
Toast.LENGTH_SHORT).show();
}
});
而不是使用视图和id来查找按钮,而只会在您使用getChildAt()
创建列表中的第一个按钮而不是列表中的单个按钮时提示吐司,您可以获得个人列表中的按钮