RelativeLayout 中两个按钮平分屏幕 – 热爱改变生活
我的GitHub GitHub |     登录
  • If you can't fly, then run; if you can't run, then walk; if you can't walk, then crawl
  • but whatever you do, you have to keep moving forward。
  • “你骗得了我有什么用,这是你自己的人生”
  • 曾有伤心之地,入梦如听 此歌

RelativeLayout 中两个按钮平分屏幕

Android组件 sinvader 5694℃ 0评论

<RelativeLayout
  android:layout_width="fill_parent"
  android:layout_height="wrap_content">
  <TextView
   android:id="@+id/placeholder"
    android:text=""
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_centerHorizontal="true"/>
  <Button
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_alignRight="@id/placeholder"
    android:layout_alignParentLeft="true"
    android:text="Left"/>
  <Button
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@id/placeholder"
    android:layout_alignParentRight="true"
    android:text="Right"/>
</RelativeLayout>

效果:
relativelayout_test
其实就是中间放了一个什么都不显示的 textView 然后让他定在 RelativeLayout 的中间(使用 layout_centerInParent),剩下的两个一个让他居左一个让他靠右就可以了。

¥ 有帮助么?打赏一下~

转载请注明:热爱改变生活.cn » RelativeLayout 中两个按钮平分屏幕


本博客只要没有注明“转”,那么均为原创。 转载请注明链接:sumile.cn » RelativeLayout 中两个按钮平分屏幕

喜欢 (0)
发表我的评论
取消评论
表情

如需邮件形式接收回复,请注册登录

Hi,你需要填写昵称和邮箱~

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址