位置: 编程技术 - 正文
推荐整理分享Android 自定义Dialog样式(Android 自定义控件),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:android自定义dialog样式,Android 自定义view,Android自定义dialog,android自定义dialog对话框,Android自定义dialog,Android自定义dialod覆盖导航栏,Android自定义dialog,Android自定义dialog,内容如对您有帮助,希望把文章链接给更多的朋友!
1.首先在资源里面建立style的value;
[html] view plaincopy<!-- ShareDialog --> <style name="Theme.ShareDialog" parent="android:style/Theme.Dialog"> <item name="android:windowBackground">@drawable/fill_box</item> <item name="android:windowNoTitle">true</item> </style> 2.drawable/filled_box.xml:[html] view plaincopy<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android=" <shape> <stroke android:width="3dp" /> <corners android:radius="3dp" /> <padding android:left="dp" android:top="dp" android:right="dp" android:bottom="dp" /> </shape> <item android:drawable="@drawable/dialog_my_bg" /> </selector> 3.方法:[java] view plaincopypublic static Dialog getDialog(final Context context, final String name) { final Dialog dialog = new Dialog(context, R.style.Theme_ShareDialog); dialog.setContentView(R.layout.dialog_share_comment); Button btnshare = (Button) dialog.findViewById(R.id.dialog_btn_ok); btnshare.setOnClickListener(new Button.OnClickListener() { public void onClick(View view) { } }); return dialog; } 其中 dialog.setContentView(R.layout.dialog_share_comment);是对话框的布局new Dialog(context, R.style.Theme_ShareDialog);引用style
4.调用
[java] view plaincopypublic void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.Android 优化电池使用时间——确定和检测网络状态 原文参见此处确定和监控网络连接状态重复提醒和后台服务最常见的用途之一,就是为来自互联网资源的应用数据、缓存数据安排定期更新或执行长时
android亮屏、暗屏、解锁、关闭系统对话的监听事件 [java]viewplaincopyprotectedvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.button_layuout);finalIntentFilterfilter=newIntentFilter();//屏幕灭屏
开发Blog整理 开发Blog记录清理收藏夹太多了,来不及看了。
标签: Android 自定义控件
本文链接地址:https://www.jiuchutong.com/biancheng/384190.html 转载请保留说明!友情链接: 武汉网站建设