Android Studio 设计器预览与 phone 不同
Android Studio designer preview different to phone
我是 android 工作室的新手,正在 android 平台上开发。我遇到了一个问题,Android Studio 设计器预览没有准确显示我的 phone 上的内容。它在屏幕顶部显示了一个额外的工具栏小部件。我查看了 activity 的 XML 文件,但找不到它的来源。如果您能提供帮助,我们将不胜感激。
Phone: http://imgur.com/kxP4CFn
这是 XML 文件的片段:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.tomnulty.helloworld.SecondActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
这是 Android清单文件的片段:
<activity
android:name=".SecondActivity"
android:label="@string/hello_world"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.SECOND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
正如 Pztar 所说,"Go into your styles.xml
and under the AppTheme
style set the parent as Theme.AppCompat.Light.NoActionBar
"
虽然我的主题是在 AndroidManifest.xml
中声明 activity 时设置的,但这并没有改变预览。这必须通过更改 Android Studio 或 styles.xml
文件的 UI 中的主题来完成。
Styles.xml:
<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>
使用 Android Studio 3.0 稳定版,您可以在预览面板中更改为您的自定义主题。 提醒一下,如果 AndroidManifest.xml 中的 activity 没有实现相同的设计时间,则设计时间与运行时间不同。
我是 android 工作室的新手,正在 android 平台上开发。我遇到了一个问题,Android Studio 设计器预览没有准确显示我的 phone 上的内容。它在屏幕顶部显示了一个额外的工具栏小部件。我查看了 activity 的 XML 文件,但找不到它的来源。如果您能提供帮助,我们将不胜感激。
Phone: http://imgur.com/kxP4CFn
这是 XML 文件的片段:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.tomnulty.helloworld.SecondActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
这是 Android清单文件的片段:
<activity
android:name=".SecondActivity"
android:label="@string/hello_world"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.SECOND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
正如 Pztar 所说,"Go into your styles.xml
and under the AppTheme
style set the parent as Theme.AppCompat.Light.NoActionBar
"
虽然我的主题是在 AndroidManifest.xml
中声明 activity 时设置的,但这并没有改变预览。这必须通过更改 Android Studio 或 styles.xml
文件的 UI 中的主题来完成。
Styles.xml:
<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>
使用 Android Studio 3.0 稳定版,您可以在预览面板中更改为您的自定义主题。 提醒一下,如果 AndroidManifest.xml 中的 activity 没有实现相同的设计时间,则设计时间与运行时间不同。