首页 > 代码库 > Android Dialog
Android Dialog
- Android提供了对话框支持,包括如下类别:
- AlertDialog:功能最丰富,应用最广泛的对话框
- ProgressDialog:进度条对话框
- DataPickerDialog:日期选择对话框
- TimePickerDialog:事件选择对话框
- 自定义Dialog
//Style.xml代码 <style name="FullScreenDialog" parent="android:style/Theme.Dialog"> <item name="android:windowNoTitle">true</item> <item name="android:windowFrame">@null</item> <item name="android:windowIsFloating">true</item> <item name="android:windowIsTranslucent">false</item> <item name="android:background">@android:color/black</item> <item name="android:windowBackground">@null</item> <item name="android:backgroundDimEnabled">false</item> </style>
使用AlertDialog的上层接口类: Dialog reNameDialog = new Dialog(getContext(), R.style.FullScreenDialog); LayoutInflater mLayoutInflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE); View reNameView = mLayoutInflater.inflate(R.layout.audiorecord_rename, null); LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); reNameDialog.addContentView(reNameView, params); reNameDialog.show();
Android Dialog
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。