0

如何在水平 LinearLayout 中对齐子视图?我在水平管理器中有两个文本视图(宽度高度是 wrap_content)。我如何将一个向右对齐,另一个向左对齐?

4

1 回答 1

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>
于 2013-09-22T18:32:47.877 回答