Я работаю над приложением для Android.
У меня проблема, мой LinearLayout
виджет не отображается на экране.
Вот мой макет
<LinearLayout
android:id="@+id/linear_layout_row_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_marginStart="5dp"
android:layout_marginLeft="5dp"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:orientation="vertical"
android:weightSum="2">
<LinearLayout
android:id="@+id/linear_layout_row1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginStart="60dp"
android:layout_marginEnd="60dp"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2">
// Other widgets
</LinearLayout>
<LinearLayout
android:id="@+id/linear_layout_row2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginStart="60dp"
android:layout_marginTop="5dp"
android:layout_marginEnd="60dp"
android:layout_marginBottom="40dp"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="1">
// Other widgets
</LinearLayout>
<LinearLayout
android:id="@+id/linear_layout_row3"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginStart="60dp"
android:layout_marginTop="5dp"
android:layout_marginEnd="60dp"
android:layout_marginBottom="40dp"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2">
// Other widgets
</LinearLayout>
</LinearLayout>
В этом случае linear_layout_row3
не отображается на экране.
Если я переместу его вверх, будет показано, однако перемещенный ниже макет не будет виден.
Iне понимаю проблемы, не могли бы вы помочь найти ее?