0

对不起,我已经完成了我的问题,所以我重新问了这个问题并删除了之前的帖子......

我在我的项目中的 RelativeLayout 中使用 LinearLayout (在 raw 中有 4 个 ImageButtons ),我已经使用 android:layout_alignParentBottom="true" 为它(线性)坚持相对布局的底部,但我的问题是之间的空间LinearLayout 的 ImageButtons 和屏幕的角落。我想删除它们以使我的 ImageButtons 就像屏幕底部的菜单栏。有人可以帮助我吗?谢谢你 !:)

<?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="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=".HomeActivity">

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:gravity="center"
    android:text="TXT"
    android:textAppearance="?android:attr/textAppearanceLarge" />


<LinearLayout
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:layout_alignParentBottom="true"
 android:orientation="horizontal"
 android:weightSum="4" >

<ImageButton
    android:id="@+id/calibrate"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:src="@drawable/1" />

<ImageButton
    android:id="@+id/chart"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:src="@drawable/2" />

<ImageButton
    android:id="@+id/guidance"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1" 
    android:src="@drawable/3" />

<ImageButton
    android:id="@+id/info"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1" 
    android:src="@drawable4" />

</LinearLayout>

 </RelativeLayout>

结果是这样的:图片http://uploadtak.com/images/c6645_1311.png1

4

1 回答 1

2

删除 RelativeLAout 上的填充

从:

<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=".HomeActivity">

至:

<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" >
于 2013-07-26T12:56:51.857 回答