我正在尝试使用按钮开始这样的新活动:
public class MainActivity extends Activity implements OnClickListener {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
((Button) findViewById(R.id.button1)).setOnClickListener(this);
((Button) findViewById(R.id.button2)).setOnClickListener(this);
}
public void onClick(View view) {
Button clickedBtn = (Button) view;
switch (clickedBtn.getId()) {
case R.id.button1: startActivity(new Intent(this, NewActivity.class));
break;
case R.id.button2: startActivity(new Intent(this, AnotherActivity.class));
break;
}
}
}
但是当我点击任一按钮时似乎没有任何事情发生。我想这是因为onClick方法不知道实际点击了哪个按钮...但我不知道如何解决这个问题...请指教,谢谢!
编辑:添加XML文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#000000">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="first button" />
<Button android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="second button" />
</LinearLayout>
</ScrollView>
</LinearLayout>
答案 0 :(得分:0)
我把代码放在错误的文件中;现在一切正常。谢谢!