以LinearLayout为中心

时间:2018-06-03 02:27:23

标签: android layout

如何将LinearLayout中的三个项目居中?我尝试了几件事,但它们都放在左边

Stream.forEachOrdered(Consumer)

原来这一切看起来像这样: enter image description here

我希望所有这些都放在中心位置。我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:1)

只需在LinearLayout中执行此操作

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="horizontal">

这是我的输出

enter image description here

答案 1 :(得分:1)

只需将此android:gravity="center"添加到您的LinearLayout。