0

我的 xml 文件列出了左侧的项目,我想将它们的位置更改为右侧。我试过了android:layout_gravity="right",但是没有用!,我还有 item.xml 和 list_item.xml。下面的代码是 list.xml

    <ScrollView android:id="@+id/edit_layout"
        android:layout_width="fill_parent" 
          android:layout_height="fill_parent"
        android:visibility="gone"
        >       
        <LinearLayout
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingTop="5sp"
            android:paddingLeft="10sp"
            android:paddingRight="15sp"
            >
            <TextView
                android:layout_width="fill_parent" 
                android:layout_height="wrap_content"
                android:text="@string/list_descption_label"
                android:gravity="left"
            />

            <TextView
                android:layout_width="fill_parent" 
                android:layout_height="wrap_content"
                android:text="@string/list_username_label"
                android:gravity="left"
            />

            <TextView
                android:layout_width="fill_parent" 
                android:layout_height="wrap_content"
                android:text="@string/list_password_label"
                android:gravity="left"
            />
                        </LinearLayout>
    </ScrollView>
</FrameLayout>
4

1 回答 1

1

复制此代码

<?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"
android:orientation="vertical" >

<ScrollView
    android:id="@+id/edit_layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
     >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingLeft="10sp"
        android:paddingRight="15sp"
        android:gravity="right"
        android:paddingTop="5sp" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:text="hello" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:text="hai" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:text="nams" />
    </LinearLayout>
</ScrollView>



<FrameLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent" >

</FrameLayout>

</RelativeLayout>
于 2012-04-19T08:55:47.440 回答