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

の代わりに、画像とテキストを含むカスタムアイテムでをScrollView使用します(他のレイアウトでも機能します)。幅と重力に使用します。ListViewLinearLayoutwrap_contentcenter

表示されるデータを制御するためArrayAdapterに、アダプターなどをにバインドします。ListView

于 2012-04-28T02:55:54.727 に答える