0

这是我的 layout.xml 文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ImageView
        android:id="@+id/image1"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:contentDescription="@string/desc"
        android:padding="10dp"
        android:layout_alignParentLeft="true"/>

    <TextView
        android:id="@+id/text1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#FFF"
        android:layout_toRightOf="@+id/image1"/>

     <ScrollView 
        android:id="@+id/scroll"
        android:layout_width="wrap_content" 
        android:layout_below="@+id/text1"
        android:layout_height="40dp"/>

    <ImageView
        android:id="@+id/image2"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:contentDescription="@string/desc"
        android:padding="10dp"
        android:layout_below="@+id/image1"/>

    <TextView
        android:id="@+id/text2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#FFF"
        android:layout_below="@+id/image1"
        android:layout_toRightOf="@+id/image2"/>


</RelativeLayout>

我想将 TextView 与上方的 ImageView 居中。我该怎么做呢?

我希望它看起来像这样:

<Player_Image> <Player_Name_Points>
<Player_Image> <Player_Name_Points>
4

2 回答 2

2

在此处输入图像描述

    <RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="24dp"
        android:text="TextView" />

</RelativeLayout>

尝试这样做......我想你会得到你想要的。

于 2012-04-28T03:11:05.307 回答
0

而不是将ScrollViewaListView与包含图像和文本的自定义项目一起使用LinearLayout(其他布局也可以)。用于wrap_content宽度和center重力。

例如,将适配器绑定ArrayAdapterListView以控制显示的数据。

于 2012-04-28T02:55:54.727 回答