Android編程自定義扁平化對話框示例
本文實例講述了Android編程自定義扁平化對話框。分享給大家供大家參考,具體如下:
平時我們開發(fā)的大多數(shù)的Android、iOS的APP,它們的風格都是擬物化設計。如Android 4.X、iOS 7、WP8采用的是扁平化設計,可以看出扁平化設計是未來UI設計的趨勢。其實扁平化設計要比擬物化設計要簡單一點,扁平化設計更加的簡約,給人視覺上更加舒服。
Shamoo想到在Android平臺上弄一個扁平化的對話框。參考過一篇帖子,然后改了一下。
這個Demo比較簡單,首先是一個dialog的布局文件,這個dialog的布局要實例化成對話框可以通過AlertDialog.Builder的setView方法,將LayoutInflater實例化的dialog布局設置對話框具體顯示內(nèi)容。效果圖如下:
下面直接貼代碼
DialogWindows.Java
package com.example.dialogwindows; import android.net.Uri; import android.os.Bundle; import android.app.Activity; import android.app.AlertDialog; import android.app.AlertDialog.Builder; import android.content.Context; import android.content.Intent; import android.view.LayoutInflater; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.ImageButton; import android.widget.ImageView; import android.widget.Toast; public class DialogWindows extends Activity { private Button button; private View dialogView; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); button = (Button) findViewById(R.id.btn); button.setOnClickListener(new OnClickListener() { public void onClick(View v) { Builder builder = myBuilder(DialogWindows.this); final AlertDialog dialog = builder.show(); //點擊屏幕外側(cè),dialog不消失 dialog.setCanceledOnTouchOutside(false); Button btnOK = (Button) dialogView.findViewById(R.id.btn_ok); btnOK.setOnClickListener(new OnClickListener() { public void onClick(View v) { Toast.makeText(DialogWindows.this, "你點擊了確定按鈕", Toast.LENGTH_SHORT).show(); dialog.dismiss(); } }); Button btnCancel = (Button) dialogView.findViewById(R.id.btn_cancel); btnCancel.setOnClickListener(new OnClickListener() { public void onClick(View v) { Toast.makeText(DialogWindows.this, "你點擊了取消按鈕", Toast.LENGTH_SHORT).show(); dialog.dismiss(); } }); ImageButton customviewtvimgCancel = (ImageButton) dialogView.findViewById(R.id.btn_exit); customviewtvimgCancel.setOnClickListener(new OnClickListener() { public void onClick(View v) { Toast.makeText(DialogWindows.this, "你點擊了退出按鈕", Toast.LENGTH_SHORT).show(); dialog.dismiss(); } }); } }); } protected Builder myBuilder(Context context) { LayoutInflater inflater = getLayoutInflater(); AlertDialog.Builder builder = new AlertDialog.Builder(context); dialogView = inflater.inflate(R.layout.dialog, null); return builder.setView(dialogView); } }
dialog.xml
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <!-- 標題欄 --> <RelativeLayout android:id="@+id/dialog_title" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="#1A94F9" > <TextView android:id="@+id/tv_title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:padding="10dp" android:text="@string/about" android:textColor="#000000" /> <ImageButton android:id="@+id/btn_exit" android:layout_width="40dp" android:layout_height="40dp" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:background="@drawable/canceltor" /> </RelativeLayout> <!-- 顯示的內(nèi)容 --> <LinearLayout android:id="@+id/dialog_msg" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" android:layout_below="@id/dialog_title" android:padding="20dp" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/author" android:textColor="#ffffff" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:linksClickable="true" android:text="@string/blog" android:textColor="#ffffff" /> </LinearLayout> <!-- 底部按鈕 --> <LinearLayout android:id="@+id/customviewlayLink" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/dialog_msg" android:orientation="horizontal" android:paddingLeft="20dp" android:paddingRight="20dp" android:paddingBottom="20dp" > <Button android:id="@+id/btn_ok" android:layout_width="fill_parent" android:layout_height="40dp" android:background="@drawable/linkbtnbged" android:linksClickable="true" android:layout_weight="1" android:layout_marginRight="10dp" android:text="@string/btn_ok" /> <Button android:id="@+id/btn_cancel" android:layout_width="fill_parent" android:layout_height="40dp" android:linksClickable="true" android:background="@drawable/linkbtnbged" android:text="@string/btn_cancel" android:layout_marginLeft="10dp" android:layout_weight="1" /> </LinearLayout> </RelativeLayout>
main.xml
<RelativeLayout 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" > <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:text="@string/show_dialog" /> </RelativeLayout>
更多關于Android相關內(nèi)容感興趣的讀者可查看本站專題:《Android開發(fā)入門與進階教程》、《Android調(diào)試技巧與常見問題解決方法匯總》、《Android基本組件用法總結(jié)》、《Android視圖View技巧總結(jié)》、《Android布局layout技巧總結(jié)》及《Android控件用法總結(jié)》
希望本文所述對大家Android程序設計有所幫助。
- Android自定義EditText實現(xiàn)登錄界面
- Android取消EditText自動獲取焦點默認行為
- Android控件系列之EditText使用方法
- android同時控制EditText輸入字符個數(shù)和禁止特殊字符輸入的方法
- Android中EditText實現(xiàn)不可編輯解決辦法
- Android定制自己的EditText輕松改變底線顏色
- Android中EditText顯示明文與密碼的兩種方式
- Android更改EditText下劃線顏色樣式的方法
- android基礎教程之a(chǎn)ndroid的listview與edittext沖突解決方法
- Android EditText實現(xiàn)扁平化的登錄界面
相關文章
Android實現(xiàn)倒計時結(jié)束后跳轉(zhuǎn)頁面功能
最近在工作中遇到一個需求,需要在倒計時一段時間后進行跳轉(zhuǎn)頁面,通過查找相關資料發(fā)現(xiàn)其中涉及的知識還不少,所以分享出來,下面這篇文章主要給大家介紹了關于Android實現(xiàn)倒計時結(jié)束后跳轉(zhuǎn)頁面功能的相關資料,需要的朋友可以參考下。2017-11-11Android使用BroadcastReceiver監(jiān)聽網(wǎng)絡連接狀態(tài)的改變
這篇文章主要為大家詳細介紹了Android使用BroadcastReceiver監(jiān)聽網(wǎng)絡連接狀態(tài)的改變,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-05-05如何調(diào)用百度地圖API實現(xiàn)手機自動定位
api手機自動定位,通過聲明地址解析器,獲取當前坐標,如何調(diào)用百度地圖api實現(xiàn)手機自動定位呢?接下來,一起跟小編來學習吧。2015-09-09Android實現(xiàn)ImageView陰影和圖層效果
這篇文章主要為大家詳細介紹了Android實現(xiàn)ImageView陰影和圖層效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-02-02android Imageview 圖片覆蓋具體實現(xiàn)
android Imageview 圖片覆蓋實現(xiàn)及注意事項如下,感興趣的朋友可以參考下哈2013-06-06Jetpack?Compose實現(xiàn)點擊事件click的多種方法
這篇文章主要介紹了Jetpack?Compose實現(xiàn)點擊事件的多種方法,Jetpack?Compose是一款基于Kotlin的聲明式UI工具包,可以方便地創(chuàng)建漂亮的用戶界面,下面我們就來看看Jetpack?Compose添加點擊事件都可以怎么實現(xiàn)2024-02-02Kotlin使用TransitionDrawable實現(xiàn)顏色漸變效果流程講解
這篇文章主要介紹了Kotlin使用TransitionDrawable實現(xiàn)顏色漸變效果,這里,我們通過TransitionDrawable顯示顏色漸變效果,包括背景顏色的變化,以及圖片與圖片的漸變效果2023-02-02