编辑输入字段时,为什么顶部的蓝色部分消失了? (包括图片)?我该如何解决这个问题?
布局应该是: 键入时的布局(不应该是): 输入后的布局(不应该是)
XML代码如下:
在这下:
<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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="nl.bosschert.john.rebornsportschallengegui.MainActivity$PlaceholderFragment">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignEnd="@+id/editTextRondes"
android:layout_alignStart="@+id/editTextRondes"
android:layout_alignTop="@+id/editTextRondes"
android:layout_marginTop="-80dp"
android:text="Hoeveel rondes heb je gemaakt?"
android:textAlignment="center"
android:textColor="@color/header"
android:textSize="@dimen/header"
android:textStyle="bold" />
<EditText
android:id="@+id/editTextRondes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_below="@id/editTextRondes"
android:layout_centerHorizontal="true"
android:layout_marginTop="200dp"
android:hint="Aantal rondes"
android:textColor="@color/header"
android:textColorHint="@color/colorRondesHint" />
</RelativeLayout>
答案 0 :(得分:1)
您的布局似乎没有问题,但此行android:layout_below="@id/editTextRondes"
不合适,
也许还有一些其他代码可能导致这个问题。
答案 1 :(得分:0)
您的错误和不必要的属性,请尝试以下方法:
-i
答案 2 :(得分:0)
试试这个:
修改manifest.xml
:
<activity
android:name=".xxxActivity"
android:windowSoftInputMode="adjustResize"/>
或:
将<ScrollView>
添加到RelativeLayout。
<ScrollView>
<RelativeLayout>
...
</RelativeLayout>
</ScrollView>
答案 3 :(得分:0)
kingfeng提供的答案在我的三星Galaxy S7上解决了我的问题,但在我的三星Galaxy S5和三星Galaxy S4上造成了问题。
试试这个:修改AndroidManifest.xml
这对我的Galaxy S7有效,但不适用于我的Galaxy S4&amp; Galaxy S5 ...当我删除代码为Kingfeng建议的时候,问题只存在于我的Galaxy S7上并且在我的Galaxy S5和S4上消失了。我认为这是我的手机以某种方式导致问题。也许它与我的自定义屏幕尺寸设置(HD / FHD / WQHD)有关,我可以在Android 7上选择
无论如何,我决定删除ActionBar,因为我不需要它。