改变物品的位置

时间:2012-04-19 08:49:11

标签: android layout

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

1 个答案:

答案 0 :(得分: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>