我有两个xml文件和两个java文件。在第一个xml中我有几个按钮,其中一个是EXIT。在java文件中,我写在onCreate:
Button exitButton = (Button) this.findViewById(R.id.button_exit);
exitButton.setOnClickListener(this);
然后我写下代码:
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.button_exit:
Intent switchtoExit = new Intent(StartActivity.this, ExitActivity.class);
startActivityForResult(switchtoExit, MESSAGE_REQUEST);
break;
}
}
第二个java文件名为ExitActivity.java。在我写的清单文件中:
<activity android:name=".ExitActivity"
android:label="@string/exit_title"
android:theme="@android:style/Theme.Dialog"/>
为了使第二个xml文件像对话框一样弹出。 我的第二个java文件(弹出窗口就像一个对话框):
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
public class ExitActivity extends Activity implements OnClickListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
this.setContentView(R.layout.activity_exit);
Button noExitButton = (Button) this.findViewById(R.id.exit_no_button);
noExitButton.setOnClickListener(this);
Button yesExitButton = (Button) this.findViewById(R.id.exit_yes_button);
yesExitButton.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.exit_no_button:
Toast.makeText(this, "Good Choice :-D", Toast.LENGTH_SHORT).show();
break;
case R.id.exit_yes_button:
Toast.makeText(this, "So sad... \nnice playing with you...", Toast.LENGTH_SHORT).show();
break;
//break;
}
}
}
我的第二个java文件有:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/red">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/exitTV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/exit_body"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/exit_no_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/exit_no_button"
android:layout_weight="1.0"
/>
<Button
android:id="@+id/exit_yes_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/exit_yes_button"
android:layout_weight="1.0"
/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
我想要做的是让一个按钮关闭对话框,另一个按钮停止应用程序。我试过finish(),它工作得很好。但是当我添加onDestroy()方法时,一个按钮会重启应用程序,另一个按钮就会关闭它。此外,当我按下后退按钮时,它将关闭应用程序。
任何人都可以解释我如何实现以下目标:
由于
答案 0 :(得分:0)
你这样做是错误的。使用第二项活动是过度的。使用AlertDialog,您可以使用AlertDialogBuilder轻松制作。将其设置为具有正按钮和负按钮。为唯一活动调用完成的正按钮设置OnClickListener。你去1活动,对话类本身将负责弹出和关闭自己。