gpt4 book ai didi

android - LinearLayout - 如何让文本位于图标的右侧?

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

在 Android 方面有点新手,只正确地工作了几天,但即使在我完成所有搜索之后,我仍然感到难过,似乎没有人知道如何帮助我。到目前为止我有这个:

http://img263.imageshack.us/i/sellscreen.jpg

如何将文本移动到每个图标旁边而不是下方?希望画廊也不会被移动。这是我的代码:

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

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>

<ImageView
android:id="@+id/test_image"
android:src="@drawable/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="The offcial UK driving theory test application. Over 190 questions."
/>

<ImageView
android:id="@+id/test_image"
android:src="@drawable/icon"

android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="The offcial UK driving theory test application. Over 190 questions."/>

<ImageView
android:id="@+id/test_image"
android:src="@drawable/icon"

android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="The offcial UK driving theory test application. Over 190 questions."/>

<ImageView
android:id="@+id/test_image"
android:src="@drawable/icon"

android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="The offcial UK driving theory test application. Over 190 questions."/>

<ImageView
android:id="@+id/test_image"
android:src="@drawable/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="The offcial UK driving theory test application. Over 190 questions."
/>

</LinearLayout>

</ScrollView>

由于某种原因,我的代码的上半部分似乎没有显示,但这只是线性布局的开始。我将永远感激任何能提供帮助的人,我已经绞尽脑汁好几天了,却一无所获。真的被它压垮了。提前致谢!!

最佳答案

您需要将每个 ImageView/TextView 对包装在一个线性布局中

<LinearLayout 
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/test_image"
android:src="@drawable/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="The offcial UK driving theory test application. Over 190 questions."
/>
</LinearLayout>

同样很明显,您没有问任何了解 android 的人,因为这很简单。

关于android - LinearLayout - 如何让文本位于图标的右侧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4619096/

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