我是android的新手请任何人告诉我如何在android活动中开发透明面板,如下图所示。 提前谢谢!
答案 0 :(得分:1)
为您的活动设置透明主题
<activity android:name="com.example.MainActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
或者您可以像这样创建custom theme
在res / values / styles.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>
然后将样式应用于您的活动,例如:
<activity android:name="com.example.MainActivity" android:theme="@style/Theme.Transparent"/>