android活动中的透明面板

时间:2013-11-13 06:15:02

标签: android

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

1 个答案:

答案 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"/>