1、将MainActivity以对话框的形式显示,首先在AndroidManifest.xml 文件中,申明 activity 的主题使用自定义对话框样式。

<activity

android:name=".MainActivity" 

android:label="@string/activity_custom_dialog" 

android:theme="@style/Theme.CustomDialog">               <intent-filter>                   <action android:name="android.intent.action.MAIN" />                   <category android:name="android.intent.category.SAMPLE_CODE" />               intent-filter>   activity>   2、res/values/styles.xml 样式文件中定义一个对话框主题样式,这里继承了 android:style/Theme.Dialog 主题,       并且窗口样式 android:windowBackground 引用了 @drawable/filled_box       <style name="Theme.CustomDialog" parent="android:style/Theme.Dialog">       <item name="android:windowBackground">@drawable/filled_boxitem>   style>   3、res/drawable/filled_box.xml 定义了 Shape 类型的 drawable(抽象的可画区域),最终是通过这个来实现新对话框的样式。   <shape xmlns:android="http://schemas.android.com/apk/res/android">       <solid android:color="#f0600000"/>       <stroke android:width="3dp" color="#ffff8080"/>       <corners android:radius="3dp" />       <padding android:left="10dp" android:top="10dp"          android:right="10dp" android:bottom="10dp" />   shape>

转载于:https://www.cnblogs.com/superior/p/4096142.html

更多相关文章

  1. 自定义ProgressBar样式
  2. Android自定义dialog对话框悬浮在界面上
  3. 【原创】Android之修改AlertDialog对话框及使用系统Holo风格
  4. Android 在Service开启对话框的方法
  5. DIY Android之一--原生Android系统主题支持的设计和实现
  6. android中listview的一些样式设置,自定义ListView行间的分割线

随机推荐

  1. Android屏幕手写签名的实现-详细篇
  2. Android级联菜单的实现方法
  3. android 屏幕方向总结
  4. Android微信之简单文本分享(ShareSDK-Ecl
  5. Android的GridView和ScrollView的嵌套
  6. ffmpeg / libx264 build for ANDROID
  7. Android实验七之SQLite数据库存储
  8. Android gallery 实现定时滑动并添加动画
  9. 【2016年度】移动安全研究资料总结
  10. Android中判断app是否连接网络