我想知道这个奇怪的事情。我想创建一个按钮,当单击按钮时,我想要创建一个新按钮,删除旧按钮,所有按钮都只有代码。
到目前为止,这是我的代码,它不能像我希望的那样工作。这里有什么输入?谢谢。
public void createRounds(int rounds){
ArrayList<Button> buttonArray = new ArrayList<>();
for(int i=0;i<=rounds;i++){
bk = new Button(getActivity());
bk.setLayoutParams(new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT));
bk.setBackground(getResources().getDrawable(R.drawable.btnshapegreen));
bk.setId(i);
bk.setText("Button "+i);
buttonArray.add(bk);
}
for(final Button a : buttonArray){
generated_time.addView(a);
a.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(getActivity(),a.getText().toString(),Toast.LENGTH_LONG).show();
generated_time.removeView(a);
}
});
}
}
我知道for-each循环确实一次添加所有按钮,但是有没有办法一次添加一个?
我创建了示例代码来回答我对您的问题的理解,请参阅下面的代码,使用XML和JAVA
XML
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.constraint.ConstraintLayout>
JAVA
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
private int id = 0;
private Button button;
private ConstraintLayout layout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
layout = findViewById(R.id.container);
button = new Button(this);
button.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT));
button.setId(id);
button.setText(String.format("%d", id));
button.setOnClickListener(this);
layout.addView(button);
layout.requestLayout();
}
@Override
public void onClick(View v) {
if (v.getId() == id) {
id++;
button.setId(id);
button.setText(String.format("%d", id));
layout.requestLayout();
}
}
}