大家好,我对此很陌生,可能需要一些帮助,这很简单,
我需要在此代码中添加什么
public class main extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView tv2 = (TextView) findViewById(R.id.textView2);
Button b = (Button) findViewById(R.id.button1);
b.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
TextView tx = (TextView) findViewById(R.id.textView2);
tx.setText("Hello");
}
});
}
}
为了做到这一点,当按下按钮时,如果我标记了字符串、string1、string2 等,它会将文本视图更改为我的 strings.xml 列表中的随机字符串。