目前我设法在视图上动态创建按钮
这是我创建按钮的代码;
public void Add_on(View v) {
AlertDialog.Builder mbuilder = new AlertDialog.Builder(Mb.this);
View mview = getLayoutInflater().inflate(R.layout.activity_mb1, null);
EditText number = (EditText) mview.findViewById(R.id.etnum);
Button Create = (Button) mview.findViewById(R.id.etcreate);
Button Cancel = (Button) mview.findViewById(R.id.etcancel);
Create.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View view){
if (!number.getText().toString().isEmpty())
{
Toast.makeText(Mb.this, "Number can be NULL",Toast.LENGTH_SHORT).show();
LinearLayout yenilayout = new LinearLayout(Mb.this);
int n =1;
for(int i=0; i<n; i++)
{
Button yeniButton = new Button(Mb.this);
yenilayout.addView(yeniButton);
yeniButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(Mb.this, "Button is working",Toast.LENGTH_SHORT).show();
}
});
}
altlayout.addView(yenilayout);
} else {
Toast.makeText(Mb.this, "Number cannot be NULL",Toast.LENGTH_SHORT).show();
}
}
});
但每当我回想起活动时,按钮就不再存在了。所以我知道我可以永久地将按钮放在那里吗?
感谢您的建议
答案 0 :(得分:0)
您可以使用Bundle
保存活动的状态,并在onCreate()
方法中重新创建。这适用于Activity
的特定实例,因此可用于保存有关选择或用户输入等的数据,但不数据需要在应用程序启动时保持不变。< / p>
要使用Bundle
,请覆盖onSaveInstanceState(Bundle)
课程中的onRestoreInstanceState(Bundle)
和Activity
方法。您可以使用Bundle
中的方法在地图中保存您喜欢的任何数据,并将其恢复到onRestoreInstanceState(Bundle)
中onStart()
中调用的数据。
默认的实现已经处理了大多数UI的东西,我认为这会跟踪你的按钮,所以可能你的问题实际上是关于将一些持久数据与应用程序相关联。 (这也意味着如果你覆盖了上面的方法,你应该确保在实现的第一行调用super方法)。
如果您需要跨应用程序启动的持久数据,那么最快和最简单的方法是使用SharedPreferences
,请参阅this答案以获取示例。