gpt4 book ai didi

java - 如何将数据添加到按钮表单中的另一个 Activity

转载 作者:行者123 更新时间:2023-12-01 18:46:52 26 4
gpt4 key购买 nike

我正在制作 Android POS,但在向其他 Activity 添加数据传递时遇到问题。当用户添加新产品时,该产品将显示在“按钮”表单的“菜单” Activity 中,并且无论用户在名称和价格中输入什么值,该产品都具有一个值。

 @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_addproduct);

POSDB = new DatabaseHelper(this);
prdName = (EditText)findViewById(R.id.PrdName);
prdPrice = (EditText) findViewById(R.id.PrdPrice);
btnAdd = (Button) findViewById(R.id.BtnPrdAdd);
btnBack = (Button) findViewById(R.id.BtBack);

AddProduct();

}

public void AddProduct(){
btnAdd.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String name = prdName.getText().toString().trim();
String price = prdPrice.getText().toString().trim();
if(prdName.length() != 0 && prdPrice.length() != 0)
{
boolean ADD = POSDB.addData(name,price);
if(ADD == true)
{Toast.makeText(Addproduct.this, " The product has been added", Toast.LENGTH_LONG).show();}
else
{Toast.makeText(Addproduct.this, " Something Went Wrong", Toast.LENGTH_LONG).show();}
}
else
{Toast.makeText(Addproduct.this, " Please fill up the Textfield", Toast.LENGTH_LONG).show();}
}
});
}

最佳答案

这取决于您如何构建菜单 Activity 来获取数据以及如何显示数据。
例如,如果您使用 RecyclerView,您可以将其设置为在按钮列表中显示数据,这样当新产品添加到数据库时,RecyclerView 就会以按钮形式显示数据。

关于java - 如何将数据添加到按钮表单中的另一个 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59815933/

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