gpt4 book ai didi

java - 保存动态创建的按钮android

转载 作者:行者123 更新时间:2023-11-29 05:09:36 24 4
gpt4 key购买 nike

我正在尝试保存我在单独的 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);
}

这是我的 activity_main 的 .xml:

    <?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 设置 View ,它基本上只显示您在当前 Activity 中扩充的布局。之后您将启动一个新的 Activity ,它会自行启动一个完全独立的 View ,因此仍会显示默认按钮。

如果您想在实际 Activity 中设置文本并添加 Button,最好将 String 作为 Intent Extra 传递。

所以你的提交方法应该是这样的:

//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);
}
}

关于java - 保存动态创建的按钮android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29110424/

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