gpt4 book ai didi

Android ImageView布局对齐

转载 作者:行者123 更新时间:2023-11-29 16:03:32 25 4
gpt4 key购买 nike

如何更改我的布局以使图像 1 更像图像 2?我不介意是文本上移还是图像上移。

What I have

What I need

我的布局文件是这样的:-

    <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="1"
android:orientation="horizontal" >

<LinearLayout
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.6"
android:orientation="vertical" >

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/imp" />

</LinearLayout>

<LinearLayout
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.4"
android:orientation="vertical" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/stats_chr" />
<TextView
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right|center_vertical"
android:singleLine="true"
android:text="AA" />
</LinearLayout>

最佳答案

接受的答案对我不起作用。这是我的解决方案

将 android:scaleType="fitStart"添加到 ImageView。

关于Android ImageView布局对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21643428/

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