Android Studio 预览-全屏

Android Studio 预览界面默认上下有状态栏和导航栏,
Android Studio 预览-全屏_第1张图片

如果需要得到全屏模式的预览可以进行如下操作:

打开AVD Manager 如图所示创建一个新Hardware Profile

Android Studio 预览-全屏_第2张图片

style.xml中新建一个style

新建一个空Activity, AndroidManifest.xml中android:theme

<activity
   android:name=".activity.FullScreenActivity"
   android:theme="@style/AppCompatFullscreen" />

在需要全屏预览layout.xml根布局中加入 tools:context=”.activity.FullScreenActivity”


<android.support.constraint.ConstraintLayout 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"
    tools:context=".activity.FullScreenActivity">

右侧预览界面选中新建的Hardware 和 Theme

选择之后Hardware 会记住, Theme是根据
tools:context=”.activity.FullScreenActivity”
FullScreenActivity的Theme自动选择的

全屏预览效果

Android Studio 预览-全屏_第3张图片

你可能感兴趣的:(Android Studio 预览-全屏)