开发者

Fully transparent activity with 9 patch corner image

开发者 https://www.devze.com 2023-04-12 03:24 出处:网络
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 ?

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.

Fully transparent activity with 9 patch corner image

Here's my 9patch

Fully transparent activity with 9 patch corner image

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

开发者_如何学Python  <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>
[..........]


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

instead of yours.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号