Android系统。布局项目移动到右侧

时间:2014-06-13 14:32:08

标签: android layout

我有三个部分的android布局(imageview,textview,imageview),我希望最后一部分移动到右侧,现在它靠近第二个元素。

我的代码:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/menu_button_bg"
    android:orientation="horizontal"
    android:paddingLeft="13dp" >

    <ImageView
        android:id="@+id/menuItemIcon"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_marginBottom="13dp"
        android:layout_marginRight="13dp"
        android:layout_marginTop="13dp"
        android:contentDescription="@string/menuItemDesc"
        android:gravity="center_vertical" />

    <TextView
        android:id="@+id/menuItemTitle"
        android:layout_width="wrap_content"
        android:layout_height="70dp"
        android:gravity="center_vertical"
        android:textSize="16sp" >
    </TextView>

    <ImageView
        android:id="@+id/menuItemIconRight"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="13dp"
        android:layout_marginRight="13dp"
        android:layout_marginTop="13dp"
        android:layout_weight="0.1"
        android:contentDescription="@string/menuItemDesc"
        android:gravity="right" />


</LinearLayout>

1 个答案:

答案 0 :(得分:1)

您可以为TextView提供以下属性:

android:layout_width="0dp"
android:layout_weight="1"

这将使TextView拉伸用尽两个ImageView之间的空间。另一种方法是使用RelativeLayout而不是LinearLayout,但这应该可以满足您的需求。