gpt4 book ai didi

android - 我如何在 xml 中的 ImageView 旁边制作一些 TextView

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

我如何在 xml 中的 ImageView 旁边创建一些 TextView?我已经尽力了,但还是做不到。

像这样: Display frame

我需要 4 个包含标题和描述的文本。文本旨在描述图像,任何指针或帮助将不胜感激

这是我的 xml 代码(最终得到一个凌乱的布局)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:background="@android:color/white"
android:padding="@dimen/activity_vertical_margin"
android:orientation="vertical"
android:layout_height="match_parent">

<ImageView
android:id="@+id/img_item_photo"
android:layout_width="150dp"
android:layout_height="200dp"
android:layout_marginEnd="@dimen/activity_horizontal_margin"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:src="@drawable/oneplus_7_pro_r1" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toEndOf="@id/img_item_photo"
android:layout_toRightOf="@id/img_item_photo"
android:orientation="vertical" >

<TextView
android:id="@+id/tv_item_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="165dp"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:text="@string/Hape_name"
android:textSize="16sp"
android:textStyle="bold" />

<TextView
android:id="@+id/tv_item_Desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/activity_horizontal_margin" />

</LinearLayout>
</RelativeLayout>

最佳答案

只需从您的 TextView 中删除 android:layout_marginBottom="165dp"

试试这个

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:background="@android:color/white"
android:layout_height="match_parent">

<ImageView
android:id="@+id/img_item_photo"
android:layout_width="150dp"
android:layout_height="200dp"
android:src="@drawable/ic_search_black" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toEndOf="@id/img_item_photo"
android:layout_toRightOf="@id/img_item_photo"
android:orientation="vertical" >

<TextView
android:id="@+id/tv_item_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/load_available"
android:textSize="16sp"
android:textStyle="bold" />

<TextView
android:id="@+id/tv_item_Desc"
android:text="@string/load_available"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

</LinearLayout>
</RelativeLayout>

此外,尝试使用 LinearLayout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:background="@android:color/white"
android:orientation="horizontal"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/img_item_photo"
android:layout_width="150dp"
android:layout_height="200dp"
android:src="@drawable/ic_search_black" />

<LinearLayout
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:orientation="vertical" >

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/load_available"
android:textSize="16sp"
android:textStyle="bold" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/load_available"
android:textSize="16sp"
android:textStyle="bold" />

<TextView
android:id="@+id/tv_item_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/load_available"
android:textSize="16sp"
android:textStyle="bold" />

<TextView
android:id="@+id/tv_item_Desc"
android:text="@string/load_available"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

</LinearLayout>
</LinearLayout>

关于android - 我如何在 xml 中的 ImageView 旁边制作一些 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57050384/

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