影像視圖隱藏在按鈕下我可以做哪些更改,以便影像視圖可以在按鈕視圖尋呼機上方也有底部填充,以便按鈕可以正確容納。影像顯示在其他部分,但不在按鈕上方。
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".McqActivity"
android:id="@ id/fragment"
>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<ImageView
android:id="@ id/starFirst"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/ic_baseline_star_24"
/>
<com.google.android.material.button.MaterialButton
android:id="@ id/right"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</RelativeLayout>
<androidx.viewpager2.widget.ViewPager2
android:id="@ id/questions_view_frag"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
android:orientation="horizontal"
android:paddingBottom="20dp"
android:paddingTop="50dp"
>
</androidx.viewpager2.widget.ViewPager2>
</androidx.constraintlayout.widget.ConstraintLayout>
uj5u.com熱心網友回復:
layout_constraintBottom_toBottomOf和其他layout_constraint...人不會在里面作業RelativeLayout,這些人希望與ConstraintLayout嚴格的父母一起作業。如果你想View在里面/下面/上面對齊兩個s,RelativeLayoyut你必須使用其他屬性,例如
android:layout_below="@ id/starFirst"
android:layout_above="@ id/starFirst"
android:layout_toRightOf="@id/starFirst"
android:layout_toLeftOf="@id/starFirst"
注意,每一個與開始ATTRlayout_希望通過嚴格的家長閱讀,而不是View具有這樣的attrs集。每個人ViewGroup都有自己的一套這樣的
編輯:原來這是一個elevation案例/問題(Z 軸),所以有用的屬性是
android:translationZ="100dp"
android:elevation="100dp"
轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/360244.html
