0

我对 Android 布局非常陌生。您能否帮我缩放图像以覆盖空白区域的宽度和高度。

这是屏幕。

它都向右侧倾斜。我怎样才能让它填满屏幕

这是布局

<?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="vertical"

    >

      <RelativeLayout
          android:id="@+id/jkmenu1"
          android:layout_width="match_parent"
          android:layout_height="match_parent" >

          <ImageButton
              android:id="@+id/atm"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_alignBottom="@+id/airport"
              android:layout_alignLeft="@+id/birthday"
              android:background="@android:color/transparent"
              android:src="@drawable/atm" />

          <ImageButton
              android:id="@+id/currency"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_alignLeft="@+id/birthday"
              android:layout_alignTop="@+id/classifieds"
              android:src="@drawable/currency"
              android:background="@android:color/transparent" />

          <ImageButton
              android:id="@+id/education"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_alignParentRight="true"
              android:layout_below="@+id/coffee"
              android:background="@android:color/transparent"
              android:src="@drawable/education" />

          <ImageButton
              android:id="@+id/coffee"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_alignParentRight="true"
              android:layout_below="@+id/bar"
              android:background="@android:color/transparent"
              android:src="@drawable/coffee" />

          <ImageButton
              android:id="@+id/bar"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_above="@+id/birthday"
              android:layout_alignParentRight="true"
              android:background="@android:color/transparent"
              android:src="@drawable/bar" />

          <ImageButton
              android:id="@+id/birthday"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_below="@+id/atm"
              android:layout_toLeftOf="@+id/coffee"
              android:background="@android:color/transparent"
              android:src="@drawable/bithday" />

          <ImageButton
              android:id="@+id/beauty"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_centerVertical="true"
              android:layout_toLeftOf="@+id/atm"
              android:background="@android:color/transparent"
              android:src="@drawable/beauty" />

          <ImageButton
              android:id="@+id/airport"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_above="@+id/beauty"
              android:layout_alignLeft="@+id/beauty"
              android:background="@android:color/transparent"
              android:src="@drawable/airport" />

          <ImageButton
              android:id="@+id/classifieds"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_alignLeft="@+id/beauty"
              android:layout_alignTop="@+id/education"
              android:background="@android:color/transparent"
              android:src="@drawable/classifieds" />

      </RelativeLayout>

</LinearLayout>

谢谢大家

增加空间的解决方案是

我添加了

<View android:layout_height="60sp"/>

在上面的代码方面,它给了我空间:) 把我的其他东西放在屏幕上。

4

4 回答 4

2
<?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:background="@android:color/black"
    android:orientation="vertical"
    android:weightSum="3" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:orientation="horizontal"
        android:weightSum="3" >

        <ImageButton
            android:id="@+id/atm"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_alignBottom="@+id/airport"
            android:layout_alignLeft="@+id/birthday"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_action_search" />

        <ImageButton
            android:id="@+id/currency"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_alignLeft="@+id/birthday"
            android:layout_alignTop="@+id/classifieds"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />

        <ImageButton
            android:id="@+id/classifieds"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_alignLeft="@+id/beauty"
            android:layout_alignTop="@+id/education"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_action_search" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <ImageButton
            android:id="@+id/bar"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_above="@+id/birthday"
            android:layout_alignParentRight="true"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />

        <ImageButton
            android:id="@+id/birthday"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_below="@+id/atm"
            android:layout_toLeftOf="@+id/coffee"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_action_search" />

        <ImageButton
            android:id="@+id/airport"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_above="@+id/beauty"
            android:layout_alignLeft="@+id/beauty"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:orientation="horizontal"
        android:weightSum="3" >

        <ImageButton
            android:id="@+id/education"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/coffee"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_action_search" />

        <ImageButton
            android:id="@+id/coffee"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/bar"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_action_search" />

        <ImageButton
            android:id="@+id/beauty"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_centerVertical="true"
            android:layout_toLeftOf="@+id/atm"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_action_search" />
    </LinearLayout>

</LinearLayout>

我已经更改了图像的来源,我认为您可以修改它。

于 2013-04-30T12:30:47.813 回答
2
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/jkmenu1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal" >
        <ImageButton
            android:id="@+id/atm"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" >
        </ImageButton>
        <ImageButton
            android:id="@+id/currency"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />
        <ImageButton
            android:id="@+id/education"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal" >
        <ImageButton
            android:id="@+id/coffee"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />
        <ImageButton
            android:id="@+id/bar"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />
        <ImageButton
            android:id="@+id/birthday"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal" >
        <ImageButton
            android:id="@+id/beauty"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />
        <ImageButton
            android:id="@+id/airport"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />
        <ImageButton
            android:id="@+id/classifieds"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_launcher" />
    </LinearLayout>
</LinearLayout>
于 2013-04-30T12:33:44.687 回答
0

考虑使用TableLayoutGridLayout

网上有很多例子,看看这些:

Android TableLayout Example
Android Sdk TableLayout
GridLayout in Android

于 2013-04-30T12:23:46.413 回答
0

像这样使用。这将完全符合您的要求。

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:stretchColumns="*" >

    <TableRow
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1" >

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher" />

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher" />

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher" />
    </TableRow>

    <TableRow
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1" >

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher" />

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher" />

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher" />
    </TableRow>

    <TableRow
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1" >

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher" />

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher" />

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_launcher" />
    </TableRow>

</TableLayout>
于 2013-04-30T12:34:49.333 回答