gpt4 book ai didi

java - 如何在 Android 应用程序中的每个 ListView 项目文本之前添加图标?

转载 作者:行者123 更新时间:2023-12-02 00:50:17 26 4
gpt4 key购买 nike

如何在 Android 应用程序中的每个 ListView 项文本之前添加图标?

以下是调用以填充列表的当前 list_item xml:

<?xml version="1.0" encoding="utf-8"?>


<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:gravity="center_vertical"
android:padding="5dip"
android:background="@color/darkblue"
/>

我试图在它之前添加一个ImageView,但它根本没有显示。然后我在整个东西周围添加了一个RelativeLayout并尝试定位它们,但仍然没有显示。

有什么想法吗?

谢谢!

最佳答案

您可以使用相对布局,只需将属性 android:layout_toRightOf 添加到您的 TextView::

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal">
<ImageView
android:id="@+id/myIcon"
android:layout_width="25px"
android:layout_height="25px"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_centerVertical="true"
android:focusable="false"
android:padding="4px"
/>
<TextView
android:id="@android:id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:gravity="center_vertical"
android:padding="5dip"
android:background="@color/darkblue"
android:layout_toRightOf="@id/myIcon"
/>

</RelativeLayout>

关于java - 如何在 Android 应用程序中的每个 ListView 项目文本之前添加图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3523195/

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