当我在我的最小活动页面中按下“关于”按钮时,这是打开对话框的代码。但事实并非如此。 :/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
View continueButton = findViewById(R.id.continue_button);
continueButton.setOnClickListener(this);
View newgameButton = findViewById(R.id.new_button);
continueButton.setOnClickListener(this);
View aboutButton = findViewById(R.id.about_button);
continueButton.setOnClickListener(this);
View exitButton = findViewById(R.id.exit_button);
continueButton.setOnClickListener(this);
public void onClick(View v) {
switch (v.getId()) {
case R.id.continue_button:
break;
case R.id.about_button:
Intent i = new Intent(this, About.class);
startActivity(i);
break;
case R.id.new_button:
openNewGameDialog();
break;
case R.id.exit_button:
finish();
break;
}
}
主要活动XML
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/background"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:padding="30dip"
android:orientation="horizontal" >
<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center" >
<TextView
android:text="@string/main_title"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="25dip"
android:textSize="24.5sp" />
<Button
android:id="@+id/continue_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/continue_label" />
<Button
android:id="@+id/new_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/new_game_label" />
<Button
android:id="@+id/about_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/about_label" />
<Button
android:id="@+id/exit_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/exit_label" />
</LinearLayout>
</LinearLayout>
按钮示例:关于
关于活动
public class About extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.about);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.about, menu);
return true;
}
}
关于XML
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip" >
<TextView
android:id="@+id/about_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/about_text" />
</ScrollView>
答案 0 :(得分:3)
这是你的问题:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
View continueButton = findViewById(R.id.continue_button);
continueButton.setOnClickListener(this);
View newgameButton = findViewById(R.id.new_button);
**newgameButton**.setOnClickListener(this);
View aboutButton = findViewById(R.id.about_button);
**aboutButton**.setOnClickListener(this);
View exitButton = findViewById(R.id.exit_button);
**exitButton**.setOnClickListener(this);
}
只有你的'continueButton'注册了onClickListener ...
此外: 优良作法是在switch语句中也有一个默认情况,如果没有这种情况,则会执行该情况。添加带有日志消息的默认案例,看看它是否被执行。
答案 1 :(得分:1)
首先,确保您的活动实现了View.OnClickListener接口。
其次,尝试在public void onClick(View view){}方法声明之前添加@Override。如果这没有用,请尝试在onClick方法的顶部添加一个日志语句,例如记录视图的ID,并将其与您尝试匹配的视图进行比较。
答案 2 :(得分:0)
据我所知,您需要在活动中致电button.setOnClickListener(this);
onCreate方法