国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android自定義個性化的Dialog示例

2019-10-23 19:46:25
字體:
來源:轉載
供稿:網友

本文實例講述了Android自定義個性化的Dialog。分享給大家供大家參考,具體如下:

Dialog:

mDialog = new Dialog(this, R.style.chooseUserDialogTheme);mDialog.setTitle(R.string.choose_user);View rootView = LayoutInflater.from(this).inflate(    R.layout.view_simple_choose_user, null);mDialog.setContentView(rootView);mLinearLayoutUserList = (LinearLayout) rootView    .findViewById(R.id.linearLayout_user_list);mDialog.show();mIsUserListShown = true;DialogInterface.OnDismissListener listener = new DialogInterface.OnDismissListener() {  @Override  public void onDismiss(DialogInterface dialog) {    timer.cancel();    mIsUserListShown = false;  }};mDialog.setOnDismissListener(listener);

R.style.chooseUserDialog

<style name="chooseUserDialogTheme" parent="@android:style/Theme.Dialog">    <item name="android:background">@android:color/transparent</item>    <item name="android:textAppearance">@style/textAppearanceL</item>    <item name="android:textColor">@android:color/white</item>    <item name="android:windowBackground">@drawable/bg_choose_user_simple</item>    <item name="android:popupBackground">@drawable/bg_main_activity_top_bar</item></style>

R.layout.view_simple_choose_user

<?xml version="1.0" encoding="utf-8"?><HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:background="@drawable/bg_main_activity_top_bar"  android:orientation="vertical" >  <LinearLayout    android:id="@+id/linearLayout_user_list"    android:layout_width="0dp"    android:layout_height="wrap_content"    android:orientation="horizontal" >  </LinearLayout></HorizontalScrollView>

希望本文所述對大家Android程序設計有所幫助。


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 阳春市| 甘孜| 全南县| 宿迁市| 青铜峡市| 云阳县| 镇沅| 兴海县| 东海县| 石嘴山市| 桓仁| 平凉市| 河北区| 塔城市| 北安市| 闻喜县| 米泉市| 通河县| 仲巴县| 九江县| 盖州市| 亚东县| 高雄县| 东至县| 丰都县| 泸溪县| 彭阳县| 水富县| 宁河县| 克什克腾旗| 株洲市| 巫山县| 合水县| 尚义县| 古蔺县| 成武县| 石嘴山市| 东辽县| 阿拉善盟| 白山市| 康保县|