完全透明的活动,带有 9 个补丁角图像

发布于 2024-12-08 22:21:24 字数 1756 浏览 1 评论 0原文

在我的活动中,我尝试使其透明并采用 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.

enter image description here

Here's my 9patch

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风渺 2024-12-15 22:21:24

使用

而不是你的。

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

instead of yours.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文