如何获得按下按钮的值

时间:2012-05-01 13:11:35

标签: android

大家好我是android开发的新手,实际上是我的第一个应用程序。我想知道

<button
 android:text="1" />

在上面的标签中,文字是按钮的值?如果是,那么我如何获得此值或将其存储在变量中。如果没有,那么如何在android中的任何按钮后面定义一个值?

3 个答案:

答案 0 :(得分:3)

首先需要给按钮一个id,如下所示:

<Button 
android:id="@+id/buttonId"
android:text="1"
 />

然后在你的代码中执行类似的操作:

Button b = (Button)findViewById(R.id.buttonId);
b.getText(); // returns the value of your text. 

答案 1 :(得分:2)

是它的Button值,使用下面的代码来获取Button的Text。

Button b = (Button)findViewById(R.id.button1);
String buttonText = b.getText().toString();

函数调用

b.setOnClickListener(new Button.OnClickListener() {
    @Override
    public void onClick(View v) {
                  // TODO Auto-generated method stub
                  function();
    }
});

答案 2 :(得分:1)

<Button
  android:id="@+id/button1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="ButtonText" />

...

@Override
public void onCreate(Bundle savedInstanceState) {
  Button btn = (Button) findViewById(R.id.button1);
  String text = btn.getText().toString();

}