首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何将两个视图放置在LinearLayout的相反一侧

在LinearLayout中将两个视图放置在相反的一侧,可以使用LinearLayout的gravity属性和weight属性来实现。

首先,将LinearLayout的orientation属性设置为horizontal,表示水平排列视图。

然后,将第一个视图放置在LinearLayout的左侧,可以使用gravity属性设置为left。例如:

代码语言:txt
复制
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="View 1"
        android:gravity="left" />

    <!-- 第二个视图放置在右侧 -->
    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="View 2"
        android:gravity="right" />

</LinearLayout>

这样,第一个视图将会靠左侧,第二个视图将会靠右侧。

如果需要两个视图在LinearLayout中平分宽度,可以使用weight属性。例如:

代码语言:txt
复制
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="View 1"
        android:gravity="left" />

    <!-- 第二个视图平分剩余宽度 -->
    <TextView
        android:id="@+id/textView2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="View 2"
        android:gravity="right" />

</LinearLayout>

这样,两个视图将会平分LinearLayout的宽度,分别放置在左侧和右侧。

推荐的腾讯云相关产品和产品介绍链接地址:

  • 腾讯云官网:https://cloud.tencent.com/
  • 云服务器(CVM):https://cloud.tencent.com/product/cvm
  • 云数据库 MySQL 版:https://cloud.tencent.com/product/cdb_mysql
  • 人工智能平台(AI Lab):https://cloud.tencent.com/product/ailab
  • 物联网开发平台(IoT Explorer):https://cloud.tencent.com/product/iothub
  • 移动应用开发平台(腾讯移动开发者平台):https://cloud.tencent.com/product/madp
  • 对象存储(COS):https://cloud.tencent.com/product/cos
  • 腾讯区块链服务(Tencent Blockchain):https://cloud.tencent.com/product/tbc
  • 腾讯元宇宙(Tencent Metaverse):https://cloud.tencent.com/product/metaverse
页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券