以下示例显示了一种在Android上使活动透明的简单方法。
[参考:http://www.coderzheaven.com/2011/07/20/how-to-create-a-transparent-activity-in-android/]
我的活动:
public class TranslucentActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
现在主要布局文件 main.xml :
<?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的文件,并将此代码复制到其中:
<?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
此文件如下所示。
<?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">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".TranslucentActivity"
android:theme="@style/Theme.Transparent"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
在显示应用此样式的清单中检查此行。
机器人:主题=” @风格/ Theme.Transparent” appname和不同的颜色位于strings.xml
中<?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主题(或后代)。
有什么建议吗?有解决方案吗我该如何解决这个问题? 但我的目标布局是透明的。
答案 0 :(得分:1)
只需将样式Theme.Transparent
的父主题更改为Theme.AppCompat
答案 1 :(得分:1)
我从
获得了解决方案How do I create a transparent Activity on Android?
使用&#34; AppCompat&#34;图书馆或&#34; Android设计支持库&#34;它有点不同:
在styles.xml中:
<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>
在AndroidManifest.xml中:
<activity> android:name=".WhateverNameOfTheActivityIs" android:theme="@style/Theme.AppCompat.Translucent" ... </activity>
答案 2 :(得分:0)
使用AppCompatActivity扩展您的活动
public class TranslucentActivity extends AppCompatActivity
答案 3 :(得分:0)
将扩展活动更改为AppCompatActivity