Button的边距有问题

时间:2014-10-28 11:31:27

标签: android android-layout android-studio

我有一个带有两个TextView&一个Button的LinearLayout。

我使用layout_marginTop将TextView设置为略低于其他部分。这可以正常工作。

但是,我想更多地按下按钮,但是调整layout_marginTop属性似乎没有帮助。所有其他人(如填充)都可以工作,但只有我需要的人才能做到。

<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:weightSum="1">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="The value:"
        android:id="@+id/HeaderTextView"
        android:layout_gravity="left|top"
        android:layout_marginTop="20dip"
        android:fontFamily="sans-serif-light"
        android:textStyle="normal|bold"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="-"
        android:id="@+id/ValueTextView"
        android:layout_below="@id/HeaderTextView"
        android:layout_marginTop="10dip"
        android:layout_gravity="left|center_vertical"
        android:fontFamily="sans-serif-thin" />

    <Button
        android:background="@drawable/red_button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Reset Alarm"
        android:layout_below="@id/ValueTextView"
        android:layout_marginTop="120dip"
        android:id="@+id/getValueButton"
        style="@style/button_text"/>
</LinearLayout>

按钮的顶部当前贴在TextView上方的底部。为什么我不能按下按钮?

1 个答案:

答案 0 :(得分:1)

activity1.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/HeaderTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="left|top"
        android:layout_marginTop="20dip"
        android:fontFamily="sans-serif-light"
        android:text="Performance informatie"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textStyle="normal|bold" />

    <TextView
        android:id="@+id/ValueTextView"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:layout_gravity="left|center_vertical"
        android:layout_marginTop="10dip"
       android:text="-p789t89549"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <Button
        android:id="@+id/getValueButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Reset Alarm" 
        android:layout_gravity="bottom"/>

</LinearLayout>

activity2.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/layout1"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_marginLeft="20dp"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_marginLeft="20dp"
        android:layout_weight="1"
        android:orientation="vertical" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Commando "
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <Spinner
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:entries="@array/spinneritems"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Weger"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Cel"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="text "
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Gewicht"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="text "
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Tolerantie"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="text "
            android:textAppearance="?android:attr/textAppearanceLarge" />
    </LinearLayout>

    <Button
        android:id="@+id/share"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:text=" Uitvoeren" />

</LinearLayout>

现在这个布局将包含两个并将作为您的主要布局。

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <include layout="@layout/activity1" 
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="match_parent"/>

    <include layout="@layout/activity2" 
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="match_parent"/>

</LinearLayout>