左側按鈕的邊距不斷變化,您可以在視頻中看到,我希望它們不會發生變化。約束佈局邊距不斷變化
我正在做一個計算器,我想移動所有的按鈕,而不改變邊距。
視頻是存在的:https://youtu.be/UT3zINpaMhY
下面是代碼:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.a3ibm.calculator.MainActivity">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintBaseline_toBaselineOf="@+id/button2"
app:layout_constraintRight_toLeftOf="@+id/button2"
android:layout_marginRight="86dp" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintHorizontal_bias="0.864"
app:layout_constraintVertical_bias="0.319" />
</android.support.constraint.ConstraintLayout>
不清楚你在問什麼,請澄清你的問題。這種佈局的目的是什麼?你使用'ConstraintLayout'來達到什麼效果? – Blasanka
我正在做一個計算器,我想在不改變邊距的情況下移動所有的按鈕。 –