gpt4 book ai didi

安卓删除按钮

转载 作者:行者123 更新时间:2023-11-30 03:08:54 25 4
gpt4 key购买 nike

所以我有一个在 ScrollView 中包含 TableView 的 Activity 。我动态地将行添加到 TableView 。每行有 2 个字符串和 2 个从数据库查询的整数。我需要在删除整行的行上添加一个按钮,并从包含该行的数据库中删除数据。

我已经设置了 button ,但是我没有写 onClickListner 给它。我不知道如何检测要按下哪个按钮,以及如何将其与相应的行相关联。

非常感谢任何帮助。谢谢!

这是添加一行的方法。 Location 对象只保存从数据库中获取的数据。

    public void insertRow(Location l,int index){
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);


View newRow = inflater.inflate(R.layout.row, null);

TextView textview = (TextView) newRow.findViewById(R.id.textViewLocation);
TextView textview2= (TextView) newRow.findViewById(R.id.coordinates);

textview2.setText(l.getLatitude() +" | "+ l.getLongitude());
textview.setText(l.getName());

//Button remove = (Button) newRow.findViewById(R.id.removeButtonLocation);
// remove.setOnClickListener(removeLocationListener);



// Add the new components for the location to the TableLayout
a.addView(newRow, index);


}

和布局文件

    <?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="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/locations_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/row0"
android:layout_gravity="center" />

<ScrollView
android:id="@+id/Locations_scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TableLayout
android:id="@+id/stockTableScrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/egg_shell" >

</TableLayout>

</ScrollView>



</LinearLayout>

最佳答案

好的,让我们一次一个地解决您的问题。你实际上已经有了代码,但它被注释掉了,让我们看一下:

    Button remove = (Button) newRow.findViewById(R.id.removeButtonLocation);
remove.setOnClickListener(removeLocationListener);

这表示有一个名为 removeLocationListener 的对象,您还没有包含它来完成工作。 OnClickListener 只定义一个函数,onClick (View v)。传递的 View 是引用中的 View 。因此,您想要获取与该 View 相关联的行并将其删除。让我们首先获取行:

public void onClick(View v) {
TableRow row=(TableRow) v.getParent();
}

好的,既然已经有了,那么如何删除该行呢?事实证明,您必须将其从其上方的布局中移除。所以让我们做同样的事情来获得它所在的 View :

public void onClick(View v) {
TableRow row=(TableRow) v.getParent();
TableLayout tl=(TableLayout) v.getParent();
tl.removeView(row);
}

让我们在某处定义 removeLocationListener:

OnClickListener removeLocationListener= new OnClickListener() {
@Override
public void onClick(View v) {
TableRow row=(TableRow) v.getParent();
TableLayout tl=(TableLayout) v.getParent();
tl.removeView(row);
}
};

顺便说一句,你可能想看看 ListView ,这更适合这样的事情。您甚至可以将 Cursor 直接传递给它,这将使整个事情更易于管理。

关于安卓删除按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21316379/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com