Android中自定義Activity和Dialog的位置大小背景和透明度等
阿新 • • 發佈:2019-02-14
1.自定義Activity顯示樣式
先在res/values下建colors.xml檔案,寫入:
- <?xmlversion="1.0"encoding="utf-8"?>
- <resources>
- <!-- 設定透明度為56%(9/16)左右 -->
- <colorname="transparent">#9000</color>
- </resources>
這個值設定了整個介面的透明度,為了看得見效果,現在設為透明度為56%(9/16)左右。
再在res/values/下建styles.xml,設定程式的風格
-
<?
- <resources>
- <mce:stylename="Transparent"><!--
- 設定背景 -->
- <itemname="android:windowBackground">@color/transparent</item>
- <!-- 設定底層可見 -->
- <itemname="android:windowIsTranslucent">true</item>
-
<!-- 設定跳轉效果 -->
- <itemname="android:windowAnimationStyle">@+android:style/Animation.Translucent</item>
- --></mce:style><stylename="Transparent"mce_bogus="1"> 設定背景 -->
- <itemname="android:windowBackground">@color/transparent</item>
- <!-- 設定底層可見 -->
-
<
- <!-- 設定跳轉效果 -->
- <itemname="android:windowAnimationStyle">@+android:style/Animation.Translucent</item>
- </style>
- </resources>
注:mce部分為發帖是自動生成的,實際不需要。
最後一步,把這個styles.xml用在相應的Activity上。即在AndroidManifest.xml中的任意<activity>標籤中新增
android:theme = "@style/transparent"
如果想設定所有的activity都使用這個風格,可以把這句標籤語句新增在<application>中。
最後執行程式,哈哈,是不是發現整個介面都被蒙上一層半透明瞭。最後可以把背景色#9000換成#0000,執行程式後,就全透明瞭,看得見背景下的所有東西可以卻都操作無效。呵呵....
2.將Activity以Dialog的形式顯示並自定義樣式
先在res/drawable下建bgconfig.xml檔案,寫入:
- <?xmlversion="1.0"encoding="utf-8"?>
- <shapexmlns:android="http://schemas.android.com/apk/res/android">
- <solidandroid:color="#ffffff"/>
- <strokeandroid:width="3dp"color="#000000"/>
- <cornersandroid:radius="3dp"/>
- <paddingandroid:left="3dp"android:top="3dp"android:right="3dp"
- android:bottom="3dp"/>
- </shape>
再在res/values/下建styles.xml,設定程式的風格
- <?xmlversion="1.0"encoding="utf-8"?>
- <resources>
- <!-- 設定樣式 -->
- <mce:stylename="Theme.MyActivity"parent="android:style/Theme.Dialog"mce_bogus="1"mce_bogus="1"><!--
- <item name="android:windowBackground">@drawable/bgconfig</item>
- --></mce:style><stylename="Theme.MyActivity"parent="android:style/Theme.Dialog"mce_bogus="1"mce_bogus="1"mce_bogus="1"><itemname="android:windowBackground">@drawable/bgconfig</item>
- </style>
- </resources>
注:mce部分為發帖是自動生成的,實際不需要。
最後一步,把這個styles.xml用在相應的Activity上。即在AndroidManifest.xml中的任意<activity>標籤中新增
android:theme = "@style/transparent"
如果想設定所有的activity都使用這個風格,可以把這句標籤語句新增在<application>中。
3.設定視窗大小和位置
- WindowManager m = getWindowManager();
- Display d = m.getDefaultDisplay(); //為獲取螢幕寬、高
- LayoutParams p = getWindow().getAttributes(); //獲取對話方塊當前的引數值
- p.height = (int) (d.getHeight() * 1.0); //高度設定為螢幕的1.0
- p.width = (int) (d.getWidth() * 0.7); //寬度設定為螢幕的0.8
- p.alpha = 1.0f; //設定本身透明度
- p.dimAmount = 0.0f; //設定黑暗度
- getWindow().setAttributes(p); //設定生效
- getWindow().setGravity(Gravity.RIGHT); //設定靠右對齊