android 簡單對話方塊實現

來源:互聯網
上載者:User

標籤:

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 簡單對話方塊實現

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.