保存动态创建的按钮 android
Saving dynamically created button android
我正在尝试保存我在单独的 activity 上动态创建的按钮,但我似乎无法让它工作。这是我在 CreateButton.java:
中尝试过的
private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
public static int generateViewId() {
for (;;) {
final int result = sNextGeneratedId.get();
// aapt-generated IDs have the high byte nonzero; clamp to the range under that.
int newValue = result + 1;
if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
if (sNextGeneratedId.compareAndSet(result, newValue)) {
return result;
}
}
}
public void Submit (View view) {
Intent myIntent = new Intent(CreateNewClass.this, MainActivity.class);
EditText mEdit = (EditText)findViewById(R.id.class_name);
String name = mEdit.getText().toString();
mEdit = (EditText)findViewById(R.id.class_semester);
String semester = mEdit.getText().toString();
mEdit = (EditText)findViewById(R.id.class_year);
String year = mEdit.getText().toString();
Button myButton = new Button(this);
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) {
myButton.setId(generateViewId());
}
else {
myButton.setId(Button.generateViewId());
}
myButton.setText(name + " " + semester + " " + year);
setContentView(R.layout.activity_main);
LinearLayout ll = (LinearLayout)findViewById(R.id.main_screen);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams
(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
ll.addView(myButton, layoutParams);
startActivity(myIntent);
}
这是我的 .xml activity_main:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_screen"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/select" />
<Button
android:layout_height="wrap_content"
android:clickable="true"
android:autoLink="web"
android:layout_width="match_parent"
android:id="@+id/button_so"
android:text="@string/Google"
android:linksClickable="true"
android:onClick="goToGoogle"/>
<Button
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/newClass"
android:autoLink="web"
android:clickable="true"
android:id="@+id/button_su"
android:onClick="goToCreate"/>
</LinearLayout>
它在 mainActivity 上动态创建按钮并导航到它,但我无法保存按钮,它立即返回到只有两个原始按钮。
非常感谢任何帮助,我是新手,只是想在业余时间学习一些这些东西。谢谢!
那是因为您首先使用 setContentView
设置视图,它基本上只显示您在当前 Activity 中扩充的布局。
之后您将启动一个新的 Activity,它会自行启动一个完全独立的视图,因此仍会显示默认按钮。
如果您想设置文本并在实际 Activity 中添加按钮,最好将字符串作为 Intent Extra 传递。
所以您的 submit
方法应该如下所示:
//by the way you shouldn't start method names with upper case
public void submit (View view) {
Intent myIntent = new Intent(CreateNewClass.this, MainActivity.class);
EditText mEdit = (EditText)findViewById(R.id.class_name);
String name = mEdit.getText().toString();
mEdit = (EditText)findViewById(R.id.class_semester);
String semester = mEdit.getText().toString();
mEdit = (EditText)findViewById(R.id.class_year);
String year = mEdit.getText().toString();
String buttonText = name + " " + semester + " " + year;
myIntent.putExtra("button_text", buttonText);
startActivity(myIntent);
}
然后在您的 MainActivity
中,您可以通过将以下代码粘贴到 onCreate
方法中来放置按钮。
Intent intent = getIntent();
String buttonText = intent.getStringExtra("button_text");
//activity could also be started without providing the extra
if(buttonText != null){
Button button = new Button(this);
button.setText(buttonText);
LinearLayout ll = (LinearLayout)findViewById(R.id.main_screen);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams
(LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
ll.addView(button, layoutParams);
}
编辑:
好的,既然你想实现的东西与我想象的有点不同,你应该尝试另一种方法。
您正在尝试从第二个 Activity 获得 Result
,因此在这里使用 startActivityForResult()
(参见 documentation)方法将是完美的。
我假设您的应用程序使用 MainActivity
作为显示的第一个 Activity。
不是通过发出 startActivity()
来启动第二个 Activity,而是使用 startActivityForResult()
提供任何常量作为请求代码。
在您的 submit
方法中,您可以删除 startActivity(myIntent)
行,而是将以下代码放在那里:
setResult(Activity.RESULT_OK, myIntent);
finish();
再次在 MainActivity 中,您现在可以使用以下实现覆盖 onActivityResult
方法:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
//you specified the request code before, when launching the second activity
if(requestCode == ADD_USER_REQUEST){
if(resultCode == Activity.RESULT_OK){
String buttonText = data.getStringExtra("button_text");
if(buttonText != null){
Button button = new Button(this);
button.setText(buttonText);
LinearLayout ll = (LinearLayout)findViewById(R.id.main_screen);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams
(LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
ll.addView(button, layoutParams);
//here comes the part that saves the button strings persistently
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
Set<String> buttonSet = prefs.getStringSet("saved_buttons",null);
if(buttonSet == null){
buttonSet = new HashSet<String>();
}
buttonSet.add(buttonText);
prefs.edit.putStringSet("saved_buttons", buttonSet).commit();
}
}
}
最后,当 activity 重新启动时,您需要重建旧布局。将下面的代码放在 MainActivity.onCreate
中,删除 Intent Extra 东西。
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
Set<String> buttonSet = prefs.getStringSet("saved_buttons", null);
if(buttonSet != null){
LinearLayout ll = (LinearLayout)findViewById(R.id.main_screen);
for(String buttonText : buttonSet){
Button button = new Button(this);
button.setText(buttonText);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams
(LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
ll.addView(button, layoutParams);
}
}
我正在尝试保存我在单独的 activity 上动态创建的按钮,但我似乎无法让它工作。这是我在 CreateButton.java:
中尝试过的 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
public static int generateViewId() {
for (;;) {
final int result = sNextGeneratedId.get();
// aapt-generated IDs have the high byte nonzero; clamp to the range under that.
int newValue = result + 1;
if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
if (sNextGeneratedId.compareAndSet(result, newValue)) {
return result;
}
}
}
public void Submit (View view) {
Intent myIntent = new Intent(CreateNewClass.this, MainActivity.class);
EditText mEdit = (EditText)findViewById(R.id.class_name);
String name = mEdit.getText().toString();
mEdit = (EditText)findViewById(R.id.class_semester);
String semester = mEdit.getText().toString();
mEdit = (EditText)findViewById(R.id.class_year);
String year = mEdit.getText().toString();
Button myButton = new Button(this);
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) {
myButton.setId(generateViewId());
}
else {
myButton.setId(Button.generateViewId());
}
myButton.setText(name + " " + semester + " " + year);
setContentView(R.layout.activity_main);
LinearLayout ll = (LinearLayout)findViewById(R.id.main_screen);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams
(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
ll.addView(myButton, layoutParams);
startActivity(myIntent);
}
这是我的 .xml activity_main:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_screen"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/select" />
<Button
android:layout_height="wrap_content"
android:clickable="true"
android:autoLink="web"
android:layout_width="match_parent"
android:id="@+id/button_so"
android:text="@string/Google"
android:linksClickable="true"
android:onClick="goToGoogle"/>
<Button
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/newClass"
android:autoLink="web"
android:clickable="true"
android:id="@+id/button_su"
android:onClick="goToCreate"/>
</LinearLayout>
它在 mainActivity 上动态创建按钮并导航到它,但我无法保存按钮,它立即返回到只有两个原始按钮。
非常感谢任何帮助,我是新手,只是想在业余时间学习一些这些东西。谢谢!
那是因为您首先使用 setContentView
设置视图,它基本上只显示您在当前 Activity 中扩充的布局。
之后您将启动一个新的 Activity,它会自行启动一个完全独立的视图,因此仍会显示默认按钮。
如果您想设置文本并在实际 Activity 中添加按钮,最好将字符串作为 Intent Extra 传递。
所以您的 submit
方法应该如下所示:
//by the way you shouldn't start method names with upper case
public void submit (View view) {
Intent myIntent = new Intent(CreateNewClass.this, MainActivity.class);
EditText mEdit = (EditText)findViewById(R.id.class_name);
String name = mEdit.getText().toString();
mEdit = (EditText)findViewById(R.id.class_semester);
String semester = mEdit.getText().toString();
mEdit = (EditText)findViewById(R.id.class_year);
String year = mEdit.getText().toString();
String buttonText = name + " " + semester + " " + year;
myIntent.putExtra("button_text", buttonText);
startActivity(myIntent);
}
然后在您的 MainActivity
中,您可以通过将以下代码粘贴到 onCreate
方法中来放置按钮。
Intent intent = getIntent();
String buttonText = intent.getStringExtra("button_text");
//activity could also be started without providing the extra
if(buttonText != null){
Button button = new Button(this);
button.setText(buttonText);
LinearLayout ll = (LinearLayout)findViewById(R.id.main_screen);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams
(LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
ll.addView(button, layoutParams);
}
编辑:
好的,既然你想实现的东西与我想象的有点不同,你应该尝试另一种方法。
您正在尝试从第二个 Activity 获得 Result
,因此在这里使用 startActivityForResult()
(参见 documentation)方法将是完美的。
我假设您的应用程序使用 MainActivity
作为显示的第一个 Activity。
不是通过发出 startActivity()
来启动第二个 Activity,而是使用 startActivityForResult()
提供任何常量作为请求代码。
在您的 submit
方法中,您可以删除 startActivity(myIntent)
行,而是将以下代码放在那里:
setResult(Activity.RESULT_OK, myIntent);
finish();
再次在 MainActivity 中,您现在可以使用以下实现覆盖 onActivityResult
方法:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
//you specified the request code before, when launching the second activity
if(requestCode == ADD_USER_REQUEST){
if(resultCode == Activity.RESULT_OK){
String buttonText = data.getStringExtra("button_text");
if(buttonText != null){
Button button = new Button(this);
button.setText(buttonText);
LinearLayout ll = (LinearLayout)findViewById(R.id.main_screen);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams
(LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
ll.addView(button, layoutParams);
//here comes the part that saves the button strings persistently
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
Set<String> buttonSet = prefs.getStringSet("saved_buttons",null);
if(buttonSet == null){
buttonSet = new HashSet<String>();
}
buttonSet.add(buttonText);
prefs.edit.putStringSet("saved_buttons", buttonSet).commit();
}
}
}
最后,当 activity 重新启动时,您需要重建旧布局。将下面的代码放在 MainActivity.onCreate
中,删除 Intent Extra 东西。
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
Set<String> buttonSet = prefs.getStringSet("saved_buttons", null);
if(buttonSet != null){
LinearLayout ll = (LinearLayout)findViewById(R.id.main_screen);
for(String buttonText : buttonSet){
Button button = new Button(this);
button.setText(buttonText);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams
(LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
ll.addView(button, layoutParams);
}
}