gpt4 book ai didi

android - 线性布局中的 ImageView 权重

转载 作者:行者123 更新时间:2023-11-30 04:03:12 26 4
gpt4 key购买 nike

我有这样的布局:

<?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="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:minWidth="100dp" >

<TextView
android:id="@+id/txt_what_way"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="4"
android:textAppearance="?android:attr/textAppearanceMedium" />

<LinearLayout
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="3">
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:scaleType="fitCenter"
android:src="@drawable/ic_launcher"/>
</LinearLayout>

<LinearLayout
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="3">
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:scaleType="fitCenter"
android:src="@drawable/ic_launcher"/>
</LinearLayout>

</LinearLayout>

我希望它看起来像:

  • TextView - 宽度的 40%,带 ImageView 的布局 - 宽度的 30%,带 - - ImageView 的布局 - 宽度的 30%。

然而,输出是:

TextViewImageViewImageView----------------free space----------------------------------

最佳答案

在你的情况下使用 android:weightSum="10"并且使用 android:background 代替 android:src ,用这个替换你的 xml 文件

<TextView
android:id="@+id/txt_what_way"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="4"
android:text="test"
android:textAppearance="?android:attr/textAppearanceMedium" />

<ImageView
android:layout_width="fill_parent"
android:layout_height="20dp"
android:layout_weight="3"
android:background="@drawable/s1"/>


<ImageView
android:layout_width="fill_parent"
android:layout_height="20dp"
android:layout_weight="3"
android:background="@drawable/s1"/>
</LinearLayout>

你可能会得到扭曲的图像

关于android - 线性布局中的 ImageView 权重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12164814/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com