向上按钮的android动作栏覆盖问题

时间:2014-01-27 20:15:18

标签: android android-actionbar overlay

我一直在关注教程@

Add Up Button for Low-level Activities display_message_activity(我还将操作栏设置为透明),然后使用?attr/actionBarSize尝试Specify Layout Top-margin,但操作栏(“我的消息” “)似乎涵盖了整个消息(”Hello World“),如下所示

enter image description here

所以我想知道如何解决这个问题?以下为activity_display_message.xml中的layout

<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
tools:context=".DisplayMessageActivity" 
android:paddingTop="?attr/actionBarSize" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

</RelativeLayout>

欢呼声

0 个答案:

没有答案