完全透明的活动,带有 9 个补丁角图像
在我的活动中,我尝试使其透明并采用 9 补丁角设计,但它仍然在角处显示黑色,有人知道如何摆脱它吗?
我在这里尝试做的是非透明(正常)活动 A 并启动新的透明活动 B 如下图所示,但带有角设计的 9patch 背景不完全透明。
这是我的 9patch
活动 XML
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#00000000"
android:fadingEdge ="horizontal"
android:dividerHeight="0dp"
android:background="@drawable/orange9patch">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:isScrollContainer="true"
android:scrollbars="vertical"
android:padding="12dip" >
[...........]
清单
<activity android:name=".ui.ResultActivity"
android:theme="@style/Theme.Transparent">
</activity>
样式
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">true</item>
</style>
[..........]
In my activity I try to make it transparent and with a 9 patch corner design , but it still showing a black color at the corner there, anyone know how to get rid of it ?
What I try to do here is Non transparent (normal) Activity A with start a new transparent activity B as shown as below image but the 9patch background with corner design not fully transparent.
Here's my 9patch
Activity XML
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#00000000"
android:fadingEdge ="horizontal"
android:dividerHeight="0dp"
android:background="@drawable/orange9patch">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:isScrollContainer="true"
android:scrollbars="vertical"
android:padding="12dip" >
[...........]
Manifest
<activity android:name=".ui.ResultActivity"
android:theme="@style/Theme.Transparent">
</activity>
Style
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">true</item>
</style>
[..........]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
而不是你的。
use
<style name="Theme.Transparent" parent="android:style/Theme.Translucent">
instead of yours.