通常,当我使用LinearLayout时,如果单击按钮,RecyclerView将显示数据。 但是,如果我使用ConstraintLayout,则会遇到麻烦。我可以在模拟器中看到RecyclerView,但是如果单击该按钮,这次将不显示数据。
这里可能是什么问题?
activity_main2.xml
<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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<GridLayout
android:layout_width="310dp"
android:layout_height="97dp"
android:useDefaultMargins="true"
android:id="@+id/gridLayout"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="8dp">
<Button
android:text="Granola"
android:layout_width="70dp"
android:layout_height="40dp"
android:id="@+id/btnGranola"
android:background="@drawable/btn_solid_color"
/>
<Button
android:text="Brownie"
android:layout_width="70dp"
android:background="@drawable/btn_solid_color"
android:layout_height="40dp"
android:id="@+id/btnBrownie"
/>
<Button
android:text="Whaffle"
android:background="@drawable/btn_solid_color"
android:layout_width="70dp"
android:layout_height="40dp"
android:id="@+id/btnWhaffle"
android:layout_row="0" android:layout_column="2"/>
<Button
android:text="Cookie"
android:background="@drawable/btn_solid_color"
android:layout_width="70dp"
android:layout_height="40dp"
android:id="@+id/btnCookie"
android:layout_row="0" android:layout_column="3"/>
<Button
android:text="Tea"
android:background="@drawable/btn_solid_color"
android:layout_width="70dp"
android:layout_height="40dp"
android:id="@+id/btnTea"
android:layout_row="1" android:layout_column="3"/>
<Button
android:text="Filter"
android:background="@drawable/btn_solid_color"
android:layout_width="69dp"
android:layout_height="40dp"
android:id="@+id/btnFilter"
android:layout_column="0"/>
<Button
android:text="Mocha"
android:background="@drawable/btn_solid_color"
android:layout_width="70dp"
android:layout_height="40dp"
android:id="@+id/btnMocha"
/>
<Button
android:text="Latte"
android:background="@drawable/btn_solid_color"
android:layout_width="70dp"
android:layout_height="40dp"
android:id="@+id/btnLatte"
android:layout_row="1"
android:layout_column="2"/>
</GridLayout>
<android.support.v7.widget.RecyclerView
android:layout_width="324dp"
android:layout_height="212dp"
android:background="#7DAC7F"
android:id="@+id/recyclerView_main"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/gridLayout"
app:layout_constraintHorizontal_bias="0.5"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"/>
这确实困扰了我几天,即使我不断更改值也没有用。我也将RecyclerView放在ConstraintLayout下的LinearLayout内,但是又没有用,更是崩溃了。 谢谢。