gpt4 book ai didi

android - 让 ImageView 保持文本的正确大小,同时防止长文本将其推出 View ?

转载 作者:太空宇宙 更新时间:2023-11-03 12:31:01 24 4
gpt4 key购买 nike

无论我使用LinearLayout还是RelativeLayout,情况都是一样的。我认为这是一个旧的 Android XMl 错误,但我不知道为什么它仍然存在。

也就是说,在 ImageView 位于 TextView 右侧的布局中,当文本变得太长时,它可能会从屏幕上消失。它只是将其推离屏幕。我不能让 TextView 单行。

这是 XML。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<TextView
android:id="@+id/txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="some long text blahblahblahblahblah"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textSize="17sp"
android:layout_marginRight="10dp"
android:layout_centerVertical="true"
/>

<ImageView
android:layout_toRightOf="@+id/txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/key"
android:layout_centerVertical="true"
/>
</RelativeLayout>

我不能使用 layout_weight 属性,因为图像会粘在屏幕的右侧。它必须位于文本的右侧。

有人知道如何解决这个错误吗?

当文本短而长时检查图像。在第二张图片上,文字很长,图片被推离屏幕。

最佳答案

如果您正确使用layout_weight,您可以完成您的任务。请引用以下代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
>

<TextView
android:id="@+id/txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="The quick brown fox jumps over the lazy dog. As you can see it easily handles the long length of the text"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textSize="17sp"
android:layout_marginRight="10dp"

/>

<ImageView

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

长文本的输出:Output for long text

短文本的输出:enter image description here

编辑:这是因为其宽度设置为 wrap_content 的布局。如果它是 match_parent 那么在所有情况下,所有额外的空间都会给 TextView 因为它是 layout_weight 但是因为父级是 wrap_content,当文本较小时,TextView 没有额外的空间来填充。但是当文本很大时,权重属性应用于 TextView 但由于 ImageView 没有 layout_weight 因此,它只需要它必须的空间量。

关于android - 让 ImageView 保持文本的正确大小,同时防止长文本将其推出 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34231793/

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