使用 LinearLayout 和 ImageView 构建菜单

发布于 2024-10-27 23:03:03 字数 2328 浏览 3 评论 0原文

我尝试在屏幕底部使用 LinearLayout 和 ImageView 构建菜单

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/menu"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#343434" 
        android:gravity="left"
        android:paddingTop="5px"
        android:weightSum="1.0">
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/home_1"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/home_1"
            android:layout_weight=".20"/>
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/tournament_2"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/tournament_2"
            android:layout_weight=".20"/>
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/massages_2"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/massages_2"
            android:layout_weight=".20"/>
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/players_2"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/players_2"
            android:layout_weight=".20"/>
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/settings_2"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/settings_2"
            android:layout_weight=".20"/>
    </LinearLayout>

我实际上尝试为各种尺寸的屏幕制作菜单,但是当图像适应屏幕的宽度并且当图像缩小时,主 LinearLayout 的高度保持不变就像它具有具有初始高度的图像大小。那么我的错误在哪里呢?我可以用其他方式做到这一点吗?

谢谢。

I try to build menu with LinearLayout and ImageView on the bottom of the screen

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/menu"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#343434" 
        android:gravity="left"
        android:paddingTop="5px"
        android:weightSum="1.0">
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/home_1"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/home_1"
            android:layout_weight=".20"/>
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/tournament_2"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/tournament_2"
            android:layout_weight=".20"/>
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/massages_2"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/massages_2"
            android:layout_weight=".20"/>
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/players_2"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/players_2"
            android:layout_weight=".20"/>
        <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/settings_2"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/settings_2"
            android:layout_weight=".20"/>
    </LinearLayout>

I actually trying to make menu for various size screens but when images are adapted to the width of the screen and when the images are reduced main LinearLayout remains the same in height it's like it has size of images with initial height. So where are my mistakes here? And can I do this in other way?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜司空 2024-11-03 23:03:03

尝试添加

android:adjustViewBounds="true"

到每个 ImageView 中。

IE:

<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/home_1"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/home_1"
            android:adjustViewBounds="true"
            android:layout_weight=".20"/>

Try adding

android:adjustViewBounds="true"

to each of your ImageViews.

ie:

<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="left"
            android:id="@+id/home_1"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:src="@drawable/home_1"
            android:adjustViewBounds="true"
            android:layout_weight=".20"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文