我对 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"/>
在上面的代码方面,它给了我空间:) 把我的其他东西放在屏幕上。