我是Android开发的新手。我在:
跟进了Android Overlay培训http://developer.android.com/training/basics/actionbar/overlaying.html
并且花了最后几天试图让它工作。我正在使用AppCompat库,我的min SDK是7,我的最大sdk是18。
我的应用程序定义了一个自定义样式,如下所示:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomActionBarTheme" >
<activity
android:name="com.example.rtrt.MainActivity"
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>
我的布局如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/clickme"
android:onClick="sendMessage" />
</RelativeLayout>
我的theme.xml看起来像这样:
<style name="CustomActionBarTheme"
parent="@style/Theme.AppCompat.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style> <!-- ActionBar styles -->
<style name="MyActionBar"
parent="@style/Widget.AppCompat.Light.ActionBar">
<item name="android:background">@android:color/transparent</item>
<item name="android:windowActionBarOverlay">true</item>
<!-- Support library compatibility -->
<item name="windowActionBarOverlay">true</item>
</style>
应用程序编译并运行...但Button
显示在ActionBar
下方(不在其下方)。当我隐藏ActionBar
Button
移动到屏幕顶部时。当ActionBar
可见时,按钮会在屏幕上重新定位。
为什么我的ActionBar
没有浮动(覆盖)?
非常感谢这里的任何帮助。
答案 0 :(得分:0)
这是因为您的目标是SDK 11。
将您的主题更改为AppCompat,而不是AppCompat.Light:
<resources>
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme"
parent="@android:style/Theme.AppCompat">
<item name="android:windowActionBarOverlay">true</item>
<!-- Support library compatibility -->
<item name="windowActionBarOverlay">true</item>
</style>