其子视图的水平管理器对齐?

时间:2013-09-22 18:26:50

标签: android android-layout

如何在水平LinearLayout中对齐子视图? 我在水平管理器中有两个textview(宽度高度为wrap_content)。我怎样才能将一个向右对齐,另一个向左对齐?

1 个答案:

答案 0 :(得分:0)

在不知道“横向经理”的意思的情况下,很难回答你的问题。你的意思是横向布局吗?这是你在找什么?

<?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">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true" />
</RelativeLayout>