#kotlin #android-linearlayout
Вопрос:
У меня возникли проблемы с тем, чтобы высота моего линейного макета автоматически увеличивалась в соответствии с моим контентом. Как вы можете видеть на скриншоте ниже, текст даты обрезается. Есть какие-нибудь идеи о том, как это исправить, пожалуйста? Спасибо.
<LinearLayout
android:id="@ id/boxes_view_case_details"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="8dp"
android:layout_marginStart="32dp"
android:layout_marginEnd="32dp"
app:layout_constraintTop_toBottomOf="@id/color_bar_case_details"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:weightSum="3">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1"
android:background="@color/white"
android:elevation="6dp"
android:layout_marginTop="6dp"
android:layout_marginBottom="6dp"
android:layout_marginStart="6dp"
android:layout_marginEnd="6dp"
android:weightSum="2">
<TextView
android:id="@ id/form_type_case_details"
android:layout_width="match_parent"
android:layout_height="0dp"
android:text="N-400"
android:background="@color/white"
android:textStyle="bold"
android:textColor="@color/black"
android:textSize="17sp"
android:gravity="center"
android:layout_weight="1.2"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:text="Form"
android:textColor="@color/black"
android:textSize="10sp"
android:layout_weight="0.8"
android:gravity="center"
android:layout_marginBottom="4dp"
/>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1"
android:background="@color/white"
android:elevation="6dp"
android:layout_marginTop="6dp"
android:layout_marginBottom="6dp"
android:layout_marginStart="6dp"
android:layout_marginEnd="6dp"
android:gravity="center"
android:weightSum="2">
<TextView
android:id="@ id/last_updated_date_case_details"
android:layout_width="match_parent"
android:layout_height="0dp"
android:text="Apr 13, 2021"
android:textStyle="bold"
android:textColor="@color/black"
android:textSize="17sp"
android:layout_weight="1.2"
android:gravity="center"
android:layout_marginTop="4dp"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:text="Last Updated"
android:textColor="@color/black"
android:textSize="10sp"
android:layout_weight="0.8"
android:gravity="center"
android:layout_marginBottom="4dp"
/>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1"
android:background="@color/white"
android:elevation="6dp"
android:layout_marginTop="6dp"
android:layout_marginBottom="6dp"
android:layout_marginStart="6dp"
android:layout_marginEnd="6dp"
android:gravity="center"
android:weightSum="2">
<TextView
android:id="@ id/days_since_case_details"
android:layout_width="match_parent"
android:layout_height="0dp"
android:text="19"
android:textStyle="bold"
android:textColor="@color/black"
android:textSize="17sp"
android:gravity="center"
android:layout_weight="1.2"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:text="Days SincenLast Update"
android:textColor="@color/black"
android:textSize="10sp"
android:textAlignment="center"
android:layout_weight="0.8"
android:layout_marginBottom="4dp"
/>
</LinearLayout>
</LinearLayout>
Комментарии:
1. Почему бы вам не использовать «wrap_content» ?
2. хм, я думал, что 0dp-это то же самое, но ты прав, спасибо!