程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> edittext-使用編輯框輸入來設置按鈕的文本

edittext-使用編輯框輸入來設置按鈕的文本

編輯:編程綜合問答
使用編輯框輸入來設置按鈕的文本

我保存了edittext文本:

final EditText Zipcodeinput = (EditText) findViewById(R.id.Zipcode);

SharedPreferences settings = getSharedPreferences("cars4sale",0);
SharedPreferences.Editor editor = settings.edit();
editor.putString("zip", Zipcodeinput.getText().toString());
editor.commit();

我想使用字符串“zip”來給每一個按鈕設置android:text=" " 屬性。但是不知道如何做。我查過相關layout inflator的資料,但對於這個問題似乎過於復雜。大家有什麼好的方法能設置按鈕的文本嗎?

最佳回答:


首先你要找到問題中的按鈕

Button button1 = (Button)findViewById(R.id.button1);

然後使用setText方法來改變它的文本

SharedPreferences settings = getSharedPreferences("cars4sale",0);
String zipStr = settings.getString("zip", "");    
button1.setText(zipStr);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved