レイアウト修正

This commit is contained in:
ろむねこ 2023-12-20 12:32:08 +09:00 committed by ろむねこ
parent e9f2a6b711
commit 3db91fb937

View File

@ -16,25 +16,36 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/result_image_view">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/textViewResHeight"
android:layout_width="match_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
android:layout_weight="2"
android:text="Resolution:" />
<TextView
android:id="@+id/textViewResHeight"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Height" />
<TextView
android:id="@+id/textViewResWidth"
android:layout_width="match_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
android:layout_weight="1"
android:text="WIdth" />
</LinearLayout>
@ -43,7 +54,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="TextView" />
android:text="Path" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>