Android Studio - 如何删除布局上方的白色 space
Android Studio - how to remove white space above layout
我正在尝试使用基本的文本视图、文本编辑和按钮创建一个 Android 应用程序。由于某种原因,布局上方出现空白的白色 space。这不会发生在 XML 设计视图中,但会发生在 Nexus 5、Nexus 5X 和 5.4 FWVGA 模拟器以及我的实际 phone(Huawei P Smart)上。
我才刚刚开始使用 Android Studio 并且不完全了解布局等...我尝试将布局更改为相对布局,但它仍然存在。此外,Google 上的建议修复无效。
我的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" />
应用程序在模拟器和设计视图中出现问题的屏幕截图:
尝试将 xml 文件中的主题从您的 AppCompat.Light.NoActionBar
或者您可以尝试在 styles.xml
文件中手动操作:
来自
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
到
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
在我的例子中,我的清单文件中存在问题,因为没有为 activity 那里的
定义“主题”
<activity
android:name=".activity.NotificationActivity">
</activity>
我只是像这样手动添加了主题,它解决了我的问题
<activity
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:name=".activity.NotificationActivity">
</activity>
所以一定要检查清单
我正在尝试使用基本的文本视图、文本编辑和按钮创建一个 Android 应用程序。由于某种原因,布局上方出现空白的白色 space。这不会发生在 XML 设计视图中,但会发生在 Nexus 5、Nexus 5X 和 5.4 FWVGA 模拟器以及我的实际 phone(Huawei P Smart)上。
我才刚刚开始使用 Android Studio 并且不完全了解布局等...我尝试将布局更改为相对布局,但它仍然存在。此外,Google 上的建议修复无效。
我的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" />
应用程序在模拟器和设计视图中出现问题的屏幕截图:
尝试将 xml 文件中的主题从您的 AppCompat.Light.NoActionBar
或者您可以尝试在 styles.xml
文件中手动操作:
来自
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
到
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
在我的例子中,我的清单文件中存在问题,因为没有为 activity 那里的
定义“主题” <activity
android:name=".activity.NotificationActivity">
</activity>
我只是像这样手动添加了主题,它解决了我的问题
<activity
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:name=".activity.NotificationActivity">
</activity>
所以一定要检查清单