gpt4 book ai didi

android - 将 ImageView 缩放到 XML 中 TextView 的大小

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:54:57 25 4
gpt4 key购买 nike

我在水平线性布局中有一个 TextView 和一个 ImageView。是否可以缩放 ImageView,使其相对于布局文件中 TextView 的大小?

基本上我想要这样的东西:-

enter image description here

而不是这样的

enter image description here

布局文件是

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ImageView />
<TextView />
</LinearLayout>

最佳答案

是的,您可以在相对于 TextView 的高度缩小 ImageView。为了匹配 TextView 的高度,为 ImageView 设置 match_parentandroid:layout_height 这将有助于 ImageViewTextView 的高度。尝试如下...

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

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

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:textSize="30sp" />
</LinearLayout>

您也可以通过以下方式获得相同的结果...

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_launcher"
android:text="TextView"
android:gravity="center_vertical"
android:textSize="30sp" />

关于android - 将 ImageView 缩放到 XML 中 TextView 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22173628/

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