Android中如何永久设置button的文字?

我现在要实现一个功能,点击按钮弹出对话框让我修改按钮的文字,然后等我退出这个应用之后再进来我希望看见按钮上是我之前修改过的文字这要怎么实现?... 我现在要实现一个功能 ,点击按钮弹出对话框让我修改按钮的文字,然后等我退出这个应用之后再进来 我希望看见按钮上是我之前修改过的文字 这要怎么实现? 展开
 我来答
iyxy
2015-12-11 · TA获得超过102个赞
知道答主
回答量:101
采纳率:0%
帮助的人:49.3万
展开全部
用sharedpreferences存下来,每次启动查这个值,修改button值?
追问
请问能不能说的具体一点?或者有没有样例代码?谢谢
追答
public class MainActivity extends Activity implements OnClickListener {
private Button button;
private EditText editText;
SharedPreferences sharedpreferences;
SharedPreferences.Editor editor ;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sharedpreferences = getSharedPreferences("buttontest", Activity.MODE_PRIVATE);
editor = sharedpreferences.edit();
String buttontext=sharedpreferences.getString("buttontext", "button");
button=(Button) findViewById(R.id.button1);
button.setOnClickListener(this);
button.setText(buttontext);
editText=(EditText) findViewById(R.id.editText1);

}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if (v.getId()==R.id.button1) {
if (editText.getText().toString()!=null&&!editText.getText().toString().equals("")) {
button.setText(editText.getText().toString());
editor.putString("buttontext", editText.getText().toString());
editor.commit();
}
}
}

}

布局文件里就一个编辑框,一个按钮,自己试试吧,求采纳啊

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式