首页 技术 正文
技术 2022年11月22日
0 收藏 754 点赞 3,396 浏览 1219 个字

先给大家看图吧:

android自定义Activity窗体大小
看,是不是很酷呢,呵呵.这里我说关键的地方,就是自定义Activity的窗体大小.这个登录框它不是一个Dialog,而是一个Activity.如何定义,即把Activity的主题设置为Theme.Dialog<activity android:name=”.AlertDialogActivity”  android:theme=”@style/mytheme” />mytheme.xml是我自定义的主题mytheme.xml:<?xml version=”1.0″ encoding=”utf-8″?><resources><style name=”mytheme” parent=”android:style/Theme.Dialog”> <item name=”android:windowBackground”>@drawable/login_box</item>    <item name=”android:windowIsTranslucent”>true</item>  <item name=”android:windowAnimationStyle”>@+android:style/Animation.Translucent</item></style></resources>login_box.xml 是我自定义的窗体的形状:<?xml version=”1.0″ encoding=”utf-8″?><shape xmlns:android=”http://schemas.android.com/apk/res/android”><solid android:color=”#00000000″/><!– 实体设置为透明 –><stroke android:width=”1dp” color=”#FFFFFF” /><corners android:radius=”20dp” /><padding android:left=”1dp” android:top=”1dp” android:right=”1dp”android:bottom=”1dp” /></shape>在dialog.xml中,最关键的是设置背景图片<LinearLayout  xmlns:android=”http://schemas.android.com/apk/res/android”  android:orientation=”vertical”  android:layout_width=”wrap_content”  android:layout_height=”wrap_content”android:background=”@drawable/king3″>  </LiinearLayout>它的做用就是撑开整个窗体.OK,就这样就可以啦.  http://blog.sina.com.cn/s/blog_629b701e0100xwul.html

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,022
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,513
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,359
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,142
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,773
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,851