如何将ImageView和TextView居中?

时间:2012-04-28 01:37:42

标签: android android-layout

这是我的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>

2 个答案:

答案 0 :(得分:2)

enter image description here

    <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>

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

答案 1 :(得分:0)

而不是ScrollView使用包含ListView内的图片和文字的自定义项目的LinearLayout(其他布局可行)。使用wrap_content表示宽度,center表示重力。

绑定适配器,例如ArrayAdapter ListView来控制显示的数据。