Android Studio:活动预览不显示标题栏

时间:2015-05-21 00:30:27

标签: android android-studio android-titlebar

我知道这个问题是在here之前提出的,但我已经尝试了解决方案,并且我没有像设备那样获得预览外观。

我在Android版本4.2.2上使用三星Galaxy S3 mini作为我的设备调试,它完全没有修改但我不明白为什么,即使我改变主题,设备看起来仍然相同(随着活动中的变化而变化)

活动的代码就像任何新的空白活动一样

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

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

</RelativeLayout>

预览看起来像这样 enter image description here

但设备看起来像这样 enter image description here

PS:我正在学习android,所以我可能会对答案感到困惑

5 个答案:

答案 0 :(得分:6)

有类似的问题。就我而言,这只是设计视图的配置。在我标记“显示布局装饰”后,它按预期出现。Show Layout Decorations

答案 1 :(得分:1)

  1. 您的 styles.xml 文件中定义了一个主题,可以在模拟器中为您提供上述输出。

  2. 从活动的“设计”视图中的 AppTheme 选项中选择相同的主题(在styles.xml中定义),以使其显示您的ActionBar。

  3. enter image description here

答案 2 :(得分:0)

只需转到app / scr / main / res / values / styles.xml,然后将 AppTheme 样式更改为 Theme.AppCompat.Light.NoActionBar

   <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

答案 3 :(得分:0)

为了让您的活动自动显示标题栏,您需要将活动扩展到AppCompatActivity而非活动。并且还要确保在manifest.xml中没有将主题设置为

android:theme="@style/AppTheme.NoActionBar"

android:theme="@style/AppTheme"  

答案 4 :(得分:0)

我有同样的问题。我的问题是我的styles.xml文件中有这个

<item name="windowActionBar">true</item>
<item name="windowNoTitle">true</item>

enter image description here

将其更改为此,标题栏再次出现。

<item name="windowActionBar">true</item>
<item name="windowNoTitle">false</item>

enter image description here