標籤:
1.實現效果:
原始介面: 點擊按鈕之後,顯示對話方塊 點擊對話方塊後的確定按鈕後,顯示一段文字
布局檔案:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.dialoginterface.MainActivity">
<TextView
android:layout_marginTop="30dp"
android:layout_marginLeft="50dp"
android:textSize="30sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:layout_marginLeft="50dp"
android:id="@+id/button"
android:text="@string/str_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:textSize="30sp"
android:layout_marginLeft="50dp"
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
java檔案:
public class MainActivity extends Activity {
private Button bt;
private TextView tv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
bt=(Button)findViewById(R.id.button);
tv=(TextView)findViewById(R.id.text);
bt.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//建立一個對話方塊對象
AlertDialog.Builder builder=new AlertDialog.Builder(MainActivity.this);
//對對話方塊內容進行定義
builder.setTitle(R.string.app_about);
builder.setMessage(R.string.app_about_msg);
//定義對話方塊內容的點擊事件,注意後面還有個show,否則不會顯示對話方塊
builder.setPositiveButton(R.string.str_ok, new DialogInterface.OnClickListener(){
@Override
//定義點擊對話方塊按鈕後執行的動作,這裡是添加一個textview的內容
public void onClick(DialogInterface dialog, int which) {
tv.setText("這是點擊對話方塊按鈕後,才會顯示的內容!");
}
}).show();
}
});
}
}
android 簡單對話方塊實現