-1

我是 android 新手,请任何人告诉我如何在 android 活动中开发透明面板,如下图所示。 http://cdn.cultofandroid.com/wp-content/uploads/2013/08/Screen-Shot-2013-08-15-at-3.50.58-PM-640x560.jpg 提前致谢!

4

1 回答 1

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"/>
于 2013-11-13T06:18:45.673 回答