Я пытаюсь установить центр тяжести, но не работает. Вот мой XML. Что я, делаю неправильно?гравитация не работает в макете
Прилагаемый образ, как теперь выглядит XML.
я, ве один макет корня, я разделил его две части, и я хочу, каждая часть имеет центр тяжести
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="2"
android:background="@color/bluefontcolor"
android:gravity="center_vertical"
android:orientation="horizontal"
android:weightSum="2">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center">
<com.developer.lucky.modernbalda.Flipmeter
android:id="@+id/scoreboard_1"
android:layout_width="0dip"
android:layout_height="@dimen/_60sdp"
android:layout_gravity="center"
android:layout_margin="10dp"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center">
<com.developer.lucky.modernbalda.Flipmeter
android:id="@+id/scoreboard_2"
android:layout_width="0dip"
android:layout_height="@dimen/_60sdp"
android:layout_gravity="center"
android:layout_margin="10dp"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
я пытался не работал –