完全透明的活动与9补丁角图像

时间:2011-10-08 09:09:10

标签: android xml transparent nine-patch

在我的活动中,我尝试使其透明并使用9个贴角设计,但在角落处仍然显示黑色,有人知道如何摆脱它吗?

我在这里尝试做的是非透明(正常)活动A ,启动新透明活动B ,如下图所示,但9patch背景带角落设计不完全透明。

enter image description here

这是我的9patch

enter image description here

活动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>
[..........]

1 个答案:

答案 0 :(得分:3)

使用<style name="Theme.Transparent" parent="android:style/Theme.Translucent">

而不是你的。