按钮文字没有变化

时间:2017-06-29 14:18:54

标签: android button text settext

我正在尝试按变量(语言)更改文本,但即使语言变量的值为“albanian”,按钮的文本也不会改变!

P.S变量值从另一个活动传递。

String language="";
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.single_level_activity_layout);

    btnBegginer=(Button)findViewById(R.id.btnBegginer);
    btnMedium=(Button)findViewById(R.id.btnMedium);
    btnHard=(Button)findViewById(R.id.btnHard);

    Intent objIntent=getIntent();
    language=objIntent.getStringExtra("language");

    //Toast.makeText(getApplicationContext(),language,Toast.LENGTH_LONG).show();

    if (language=="albanian")
    {
        btnBegginer.setText("FILLESTAR");
        btnMedium.setText("MESATARE");
        btnHard.setText("VESHTIRE");
    }
    else
    {
        btnBegginer.setText("BEGGINER");
        btnMedium.setText("MEDIUM");
        btnHard.setText("HARD");
    }

2 个答案:

答案 0 :(得分:0)

比较Java中的字符串使用equals()方法。例如:stringValue.equals("Test")返回true / false。

答案 1 :(得分:0)

请勿使用==来比较字符串使用.equals()

if (language.equals("albanian"))
{
    btnBegginer.setText("FILLESTAR");
    btnMedium.setText("MESATARE");
    btnHard.setText("VESHTIRE");
}
else
{
    btnBegginer.setText("BEGGINER");
    btnMedium.setText("MEDIUM");
    btnHard.setText("HARD");
}