ImageView权重逆缩放

发布于 2024-10-31 18:02:17 字数 935 浏览 0 评论 0原文

嘿,我的 XML 文件中的 ImageView 遇到了一些问题。 我的布局如下:

<LinearLayout android:id="@+id/row"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <ImageView android:id="@+id/image"
        android:src="@drawable/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"/>
    <TextView android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="hello"
        android:layout_weight="4"/>     
</LinearLayout>

基本上,我想要在类似于 android 联系人列表的东西中实现什么,其中有一张图片(约占屏幕宽度的 1/5),后面是一个文本框,其中包含信息屏幕的其他部分。我尝试使用权重来使 TextView 更重要,从而获得更多空间,但这似乎并不是什么。

更奇怪的是,规模似乎在反向发挥作用。如果我将 ImageView 的权重设置为较高的值(例如 10),则会缩小图像。

Hey, I'm having some trouble with ImageView in my XML file.
My layout is as follows:

<LinearLayout android:id="@+id/row"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <ImageView android:id="@+id/image"
        android:src="@drawable/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"/>
    <TextView android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="hello"
        android:layout_weight="4"/>     
</LinearLayout>

Basically, what I am trying to achieve in something similar to the android contact list, where there is a picture (taking up about 1/5 width of the screen), followed by a text box with information in the other part of the screen. I tried to use weight to make the TextView more important, and thus receive more space, but that doesn't seem to what.

What's even stranger is that the scale seems to be working in reverse. If I set the weight of the ImageView to something high, like 10, it scales the image down.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文