我知道这个问题是在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>
预览看起来像这样
但设备看起来像这样
PS:我正在学习android,所以我可能会对答案感到困惑答案 0 :(得分:6)
答案 1 :(得分:1)
您的 styles.xml 文件中定义了一个主题,可以在模拟器中为您提供上述输出。
从活动的“设计”视图中的 AppTheme 选项中选择相同的主题(在styles.xml中定义),以使其显示您的ActionBar。
答案 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)