活动中对象的分布

时间:2015-07-08 17:46:03

标签: android user-interface android-activity

我正在某些屏幕上进行修正,而在屏幕上我现在正在工作,有一个困难。

我屏幕上有几个字段,甚至试图将按钮与屏幕底部相关联,按钮位于中心。

按钮后面是一个很大的白色部分。我不知道我能做些什么来解决它。注意:我创建了LinearLayout来尝试解决问题并定位它们。

enter image description here

我的代码

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ff000000">

    <LinearLayout
        android:id="@+id/LinLayoutSpin"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <Spinner
            android:id="@+id/spinner_TamPet"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:entries="@array/tamPet_array"
            android:prompt="@string/tamPet_prompt"
            android:layout_marginTop="50dp" />

        <EditText
            android:id="@+id/char_SobreVoce"
            android:inputType="textMultiLine"
            android:lines="8"
            android:minLines="6"
            android:maxLines="10"
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:layout_below="@id/spinner_TamPet"
            android:background="@drawable/edit_text"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true"
        android:gravity="bottom"
        android:layout_below="@id/LinLayoutSpin">

        <Button
            android:id="@+id/btnCadastraCliente"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Sou um DoggieWalker"
            android:layout_below="@id/char_SobreVoce"
            android:background="@drawable/btn_background" />

    </LinearLayout>

</RelativeLayout>

首次评论后的新版画。白色部分向上,表格向下。 enter image description here

2 个答案:

答案 0 :(得分:1)

设置android:fillViewPort =&#34; true&#34;在你的ScrollView中。

在第二个LinerLayout中设置android:layout_height =&#34; wrap_content&#34;

您可以通过删除这些LinerLayout优化您的屏幕布局,只需要一个RelativeLayout用于此屏幕

答案 1 :(得分:0)

将layout_gravity设置为相对布局的底部

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    layout_gravity="bottom"
    android:background="#ff000000">