关于java:如何在Android Android 6.0(Marshmallow)上创建透明布局?

How do I create a transparent layout on Android Android 6.0 (Marshmallow)?

本问题已经有最佳答案,请猛点这里访问。

以下示例显示了在Android上使活动透明的简单方法。

[参考:http://www.coderzheaven.com/2011/07/20/how-to-create-a-transparent-activity-in-android/]

我的活动:

1
2
3
4
5
6
7
public class TranslucentActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

现在主要的布局文件main.xml:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    android:textColor="@drawable/red"
    android:textStyle="bold"
    />
<Button
    android:text="This is Translucent Activity Demo From CoderzHeaven"
    android:id="@+id/Button01"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="@drawable/red"
    android:textStyle="bold">
</Button>
</LinearLayout>

好的,现在这里是必须应用于使活动透明的样式。在res/values文件夹中创建名为style.xml的文件,并将此代码复制到其中:

1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <style name="Theme.Transparent" parent="android:Theme">
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowIsFloating">true</item>
    <item name="android:backgroundDimEnabled">false</item>
  </style>
</resources>

现在应该在哪里应用这个主题?它应用于AndroidManifest.xml

该文件如下所示。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="pack.coderzheaven"
      android:versionCode="1"
      android:versionName="1.0">
   
        <activity android:name=".TranslucentActivity"
                  android:theme="@style/Theme.Transparent"
                  android:label="@string/app_name">
            <intent-filter>
               
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

检查应用此样式的清单中的此行。

机器人:主题=" @风格/ Theme.Transparent"
appname和不同的颜色位于strings.xml中

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">TranslucentActivity! From Coderzheaven</string>
    <string name="app_name">TranslucentActivity</string>
    <drawable name="white">#ffffff</drawable>
    <drawable name="black">#000000</drawable>
    <drawable name="blue">#2554C7</drawable>
    <drawable name="green">#347C2C</drawable>
    <drawable name="orange">#ff9900</drawable>
    <drawable name="pink">#FF00FF</drawable>
    <drawable name="violet">#a020f0</drawable>
    <drawable name="grey">#778899</drawable>
    <drawable name="red">#C11B17</drawable>
    <drawable name="yellow">#FFFF8C</drawable>
    <drawable name="PowderBlue">#b0e0e6</drawable>
    <drawable name="brown">#2F1700</drawable>
    <drawable name="Hotpink">#7D2252</drawable>
    <string name="select_Category">Select Category</string>
    <drawable name="darkgrey">#606060</drawable>
</resources>

输出:抛出异常:java.lang.IllegalStateException:您需要将Theme.AppCompat主题(或后代)与此活动一起使用。

有什么建议吗?有解决方案吗我该如何解决这个问题?
但我的目标布局是透明的。


我得到了解决方案

如何在Android上创建透明活动?

With the"AppCompat" library or"Android Design Support Library" it's a bit different:

In the styles.xml:

1
2
3
4
5
6
7
8
<style name="Theme.AppCompat.Translucent" parent="Theme.AppCompat.NoActionBar">
    <item name="android:background">#33000000</item> <!-- Or any color you need -->
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:colorBackgroundCacheHint">@null</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowAnimationStyle">@android:style/Animation</item>
</style>

In the AndroidManifest.xml:

1
2
3
4
    android:name=".WhateverNameOfTheActivityIs"
    android:theme="@style/Theme.AppCompat.Translucent"
    ...
</activity>

只需将样式Theme.Transparent的父主题更改为Theme.AppCompat即可


将扩展活动更改为AppCompatActivity


使用AppCompatActivity扩展您的活动

1
public class TranslucentActivity extends AppCompatActivity