我的项目中有一个自定义的FrameLayout,它充当按钮,因为我不想一直重复相同的代码。 该视图工作正常,但是当我需要将它们彼此水平约束时,中间视图不遵循约束,而是与父对象对齐,开始遮盖另一个对象。 我应该对我的代码做什么以确保约束按预期工作? 代码如下
dash_buttons.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">
<com.revosleap.wazalendo.utils.ui.DashButton
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/dashButtonLoan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:dash_text="Pay"
app:dash_icon="@drawable/ic_pay"
android:id="@+id/dashButtonPay"
/>
<com.revosleap.wazalendo.utils.ui.DashButton
app:layout_constraintStart_toEndOf="@id/dashButtonPay"
app:layout_constraintEnd_toStartOf="@id/dashButtonAccount"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:dash_text="Loan"
app:dash_icon="@drawable/ic_loan"
android:id="@+id/dashButtonLoan"
/>
<com.revosleap.wazalendo.utils.ui.DashButton
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@id/dashButtonLoan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:dash_text="Account"
app:dash_icon="@drawable/ic_user"
android:id="@+id/dashButtonAccount"
/>
</android.support.constraint.ConstraintLayout>
结果
答案 0 :(得分:0)
我终于明白了。约束布局似乎对使用包含线性布局的布局资源的自定义视图存在一些问题。为了实现我的目标,我将父布局从“约束”布局更改为“框架”布局,并使用重力来保持位置,并且现在都可以完美运行。