diff --git a/app/phone/src/main/java/dev/jdtech/jellyfin/fragments/PersonDetailFragment.kt b/app/phone/src/main/java/dev/jdtech/jellyfin/fragments/PersonDetailFragment.kt
index 2b589153..a7fdf4e6 100644
--- a/app/phone/src/main/java/dev/jdtech/jellyfin/fragments/PersonDetailFragment.kt
+++ b/app/phone/src/main/java/dev/jdtech/jellyfin/fragments/PersonDetailFragment.kt
@@ -127,7 +127,7 @@ internal class PersonDetailFragment : Fragment() {
binding.readAll.setOnClickListener {
with(binding.overview) {
if (layoutParams.height == ConstraintLayout.LayoutParams.WRAP_CONTENT) {
- updateLayoutParams { height = ConstraintLayout.LayoutParams.MATCH_CONSTRAINT }
+ updateLayoutParams { height = resources.getDimension(CoreR.dimen.person_detail_overview_height).toInt() }
binding.readAll.text = getString(CoreR.string.view_all)
binding.overviewGradient.isVisible = true
} else {
diff --git a/app/phone/src/main/res/layout-w600dp/fragment_person_detail.xml b/app/phone/src/main/res/layout-w600dp/fragment_person_detail.xml
new file mode 100644
index 00000000..84c42c6d
--- /dev/null
+++ b/app/phone/src/main/res/layout-w600dp/fragment_person_detail.xml
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/phone/src/main/res/layout/fragment_person_detail.xml b/app/phone/src/main/res/layout/fragment_person_detail.xml
index a534ea88..ddcfb5a0 100644
--- a/app/phone/src/main/res/layout/fragment_person_detail.xml
+++ b/app/phone/src/main/res/layout/fragment_person_detail.xml
@@ -31,11 +31,11 @@
@@ -45,24 +45,26 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="24dp"
+ android:layout_marginTop="16dp"
+ android:gravity="center"
android:textAppearance="@style/TextAppearance.Material3.HeadlineMedium"
app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toEndOf="@id/person_image"
- app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/person_image"
tools:text="Actor/Actress name" />
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/name" />
6
- 3
- 4
+ 124dp
\ No newline at end of file
diff --git a/core/src/main/res/values-sw720dp/dimens.xml b/core/src/main/res/values-sw720dp/dimens.xml
index 43e88e2a..cf46930b 100644
--- a/core/src/main/res/values-sw720dp/dimens.xml
+++ b/core/src/main/res/values-sw720dp/dimens.xml
@@ -2,4 +2,5 @@
- 8
- 6
+ 200dp
\ No newline at end of file
diff --git a/core/src/main/res/values/dimens.xml b/core/src/main/res/values/dimens.xml
index 9fcb366b..90b64d79 100644
--- a/core/src/main/res/values/dimens.xml
+++ b/core/src/main/res/values/dimens.xml
@@ -7,4 +7,5 @@
- 3
- 2
- 2
+ 72dp
\ No newline at end of file