2012年1月28日 星期六

Android 使用 Dialog 跳出對話方框


Android 使用 Dialog 跳出對話方框 //Test1Activity.java 
package csie.stut.edu.tw;

import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;



import android.widget.TextView;
import android.app.Dialog;
import android.content.DialogInterface;

public class Test1Activity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
 
    Button button1;
    TextView show;
    button1=(Button)findViewById(R.id.button1);
    show=(TextView)findViewById(R.id.show);
 




    button1.setOnClickListener(new Button.OnClickListener(){
        public void onClick(View v) {
            // TODO Auto-generated method stub
            //show.setText("按鈕已按下!");
            Dialog dialog= new AlertDialog.Builder(Test1Activity.this)
            .setTitle("Prompt")
            .setMessage("Button is clicked")
            .setPositiveButton("Yes",
            new DialogInterface.OnClickListener(){
                public void onClick(DialogInterface dialog, int whichButton){
                    dialog.cancel();
                }
            }).create();
            dialog.show();
        }
    });
    }
}
========================================================================


//main.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" >

    <TextView
        android:id="@+id/show"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" >
    </Button>

</LinearLayout>


關於 小巴

出現在網路上的小小部落客,白天是隱身在某某科大的學生,一到晚上就會現身在傳說中的秘密工作室。對於3C和網路有高度的熱情,偶爾研究APP、寫寫程式,是個最近很忙碌的學生。

 


沒有留言:

張貼留言

請提供您寶貴的意見

熱門文章