gpt4 book ai didi

android - LinearLayout : TextViews at left, 右边的大ImageView

转载 作者:太空狗 更新时间:2023-10-29 16:21:39 26 4
gpt4 key购买 nike

我正在研究 LinearLayout,但不幸的是它没有正常工作。目标是有一个 LinearLayout,左侧有两个 TextView(一个放在另一个下方),右侧有一个 ImageView。

ImageView 应该尽可能大,TextView 应该占据剩余空间。

目前我的布局 XML 是这样的:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_linearlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="1dp"
android:background="@drawable/background" >

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="2dp"
android:orientation="vertical" >

<TextView
android:id="@+id/layout1label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:singleLine="true"
android:text="1234"
android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
android:id="@+id/layout2label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1234_label2"
android:textSize="14dp" />
</LinearLayout>


<ImageView
android:id="@+id/layout_image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_vertical"
android:layout_margin="2dp"
android:layout_weight="1"
android:adjustViewBounds="true"
android:src="@drawable/ic_launcher" />

不起作用的部分:如果 TextView 中的文本“太长”,ImageView 会缩小。我想要恰恰相反。

有什么解决办法吗?

最佳答案

使用 RelativeLayout 而不是 LinearLayout 会更有效率。然后您可以放置​​ View 而无需嵌套布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/image"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
/>
<TextView
android:id="@+id/subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/image"
android:layout_below="@+id/title"
/>
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
/>
</RelativeLayout>

通过安排 TextView 相对于 ImageView 而不是相反,ImageView 优先考虑空间,文本与其余部分一起使用。

关于android - LinearLayout : TextViews at left, 右边的大ImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13033043/

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