Android Studio-如何删除布局上方的空白

时间:2019-02-19 12:36:55

标签: java android-studio android-layout screen-size

我正在尝试使用基本的textViews,textEdits和Button创建一个Android应用程序。由于某些原因,版式上方会出现空白。在XML设计视图中不会发生这种情况,但在Nexus 5,Nexus 5X和5.4 FWVGA仿真器以及我的实际手机(Huawei P Smart)上会发生这种情况。

我只是刚开始使用Android Studio,还不完全了解布局等。我试图将布局更改为相对布局,但它仍然存在。此外,建议的Google DIDN修复不起作用。

我的activity_main.xml:

'<?xml version="1.0" encoding="utf-8"?>
<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"
android:fillViewport="true"
android:background="@drawable/bg_colour_gradient"
tools:context=".MainActivity">


<EditText
    android:id="@+id/pi_user"
    style="@android:style/Widget.DeviceDefault.EditText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginLeft="8dp"
    android:layout_marginTop="380dp"
    android:layout_marginEnd="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginBottom="8dp"
    android:ems="10"
    android:hint="Pi's SSH Username"
    android:inputType="text"
    android:singleLine="false"
    android:text=""
    app:layout_constraintBottom_toTopOf="@+id/pi_pass"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.904" />

在模拟器中弄乱了应用程序的屏幕快照,以及设计视图:

App messed up in emulator

2 个答案:

答案 0 :(得分:1)

尝试将XML文件中的主题从您的主题制作到AppCompat.Light.NoActionBar

enter image description here

或者您可以尝试在styles.xml文件中手动进行操作:

来自

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

答案 1 :(得分:0)

就我而言,我的清单文件中存在问题,因为没有为那里的活动定义“主题”

  <activity    
        android:name=".activity.NotificationActivity">
    </activity>

我只是像这样手动添加了主题,它解决了我的问题

   <activity
        android:theme="@style/Theme.AppCompat.Light.NoActionBar"
        android:name=".activity.NotificationActivity">
    </activity>

所以一定要检查清单