1

我正在尝试遵循设计

有效的 XHTML

我的 XML 代码如下

<?xml version="1.0" encoding="utf-8"?>
<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="fill_parent"
    android:layout_gravity="fill_vertical" >

    <EditText
        android:id="@+id/patientid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="50dp"
        android:layout_toLeftOf="@+id/speak"
        android:ems="10"
        android:hint="@string/patientidhint" >

        <requestFocus />
    </EditText>

    <Button
        android:id="@+id/speak"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/patientid"
        android:layout_alignParentRight="true"
        android:layout_marginRight="10dp"
        android:onClick="speak"
        android:text="@string/speak" 
        tools:context=".CreatingPatientFolder"
        />
    
     <ListView
        android:id="@+id/lvTextMatches"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/speak" 
        android:layout_above="@+id/btn_Submit"/>

    <Button
        android:id="@+id/btn_Submit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="50dp"
        android:layout_alignParentBottom="true"
        android:gravity="center"
        android:paddingBottom="10dp"
        android:paddingLeft="30dp"
        android:paddingRight="30dp"
        android:paddingTop="10dp"
        android:text="Submit"
        android:textSize="20sp"
        tools:ignore="HardcodedText" />

</RelativeLayout>

现在当我运行这个项目时,它显示如下

有效的 XHTML

所以任何人都可以告诉我为什么我的按钮向上移动也请帮助我解决这个问题。

4

3 回答 3

2

我认为移动按钮的原因是因为您的列表是空的,您有足够的空间来移动按钮并且按钮不在编辑文本下方,因此它可以重叠。

您的清单中有一个名为“ windowSoftInputMode ”的属性。此属性指定软键盘的行为方式。

你可以使用:

android:windowSoftInputMode="stateVisible|adjustNothing
于 2013-06-18T11:18:58.653 回答
0

在你的按钮中添加这个:

android:layout_marginTop="20dp"

我没有测试。可能会解决您的问题。

于 2013-06-18T11:00:46.287 回答
0

对我有帮助的另一件事是将 Manifest 文件中的主题更改为 NoActionBar 和 FullScreen(如果您不想像我一样使用 ActionBar)。

android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen"
于 2015-10-03T15:24:01.037 回答