
dialog
zyzzsky
这个作者很懒,什么都没留下…
展开
-
Dialog style 设置
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="dialog" parent="@android:style/Theme.Dialog"> <item name="android:windowFrame&quo原创 2013-03-07 16:09:06 · 147 阅读 · 0 评论 -
Dialog 定义位置显示
在项目中,有时需要改变Dialog组件的位置. 1.定义一个Dialog 2.使用Dialog获取Window组件. Window window = dialog.getWindow(); 3.通过Window组件获取布局属性 LayoutParams params = window.getAttributes(); 4.设置params 类坐标的位置及透明度,长、宽等 para...原创 2013-04-16 20:17:15 · 137 阅读 · 0 评论 -
为Dialog添加Anim动画
1.定义进入和退出动画xml dialog_enter.xml <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" > <translate android:duration...原创 2013-04-25 09:33:03 · 238 阅读 · 0 评论 -
android animation 使用自定义 ProgressDialog
1、建立myprogress.xml在 res/anim中 <?xml version="1.0" encoding="UTF-8"?> <animation-list android:oneshot="false" xmlns:android="http://schemas.android.com/apk/res/android"> <item a原创 2013-02-22 16:49:51 · 103 阅读 · 0 评论