Image
粉红色的框是一个布局,电子表格是一个约束布局。我尝试使用边距和约束条件,但是当我在其他手机上运行它时,粉红色的框始终会停在外面或太小。现在的代码:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="false"
android:layout_gravity="center_horizontal"
android:background="@drawable/game1"
android:maxWidth="500dp">
<TableLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="44dp"
android:layout_marginLeft="44dp"
android:layout_marginTop="147dp"
android:layout_marginEnd="2dp"
android:layout_marginRight="1dp"
android:layout_marginBottom="51dp"
android:layout_weight="1"
android:foreground="#CBD81B60"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
tools:visibility="visible">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
</TableLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
最佳答案
您可以使用constraintlayout.widget.Guideline
并像这样使用layout_constraintGuide_percent
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="false"
android:layout_gravity="center_horizontal"
android:background="@drawable/game1">
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guide_top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent=".2"/>
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guide_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent=".1"/>
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guide_bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent=".9"/>
<TableLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:foreground="#CBD81B60"
app:layout_constraintBottom_toBottomOf="@id/guide_bottom"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintStart_toStartOf="@id/guide_start"
app:layout_constraintTop_toTopOf="@id/guide_top"
app:layout_constraintVertical_bias="0.0"
tools:visibility="visible">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
</TableLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
您可以根据需要更改layout_constraintGuide_percent
希望这个帮助