我想要什麼:
片段佈局:
<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment_profile_selection_dim_bg"
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:background="#80000000">
<android.support.constraint.ConstraintLayout
android:id="@+id/"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="320dp"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:clipChildren="false">
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="80dp"
android:elevation="1dp"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:paddingBottom="16dp"
android:text=".."
android:textColor=".."
android:textSize="17.3sp" />
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="24dp"
android:layout_marginStart="24dp"
android:layout_marginTop="20dp"
android:descendantFocusability="afterDescendants"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout"
>
</android.support.v7.widget.RecyclerView>
</android.support.constraint.ConstraintLayout>
</RelativeLayout>
Recyclerview片段:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_vertical"
android:layout_marginTop="15dp"
android:focusable="true"
android:focusableInTouchMode="true">
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginBottom="10dp"/>
<TextView
android:id="@+id/"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="11.6sp"/>
</LinearLayout>
我正在使用recyclerviews GridManagerLayout
(3列)。如果可能的話,我想使用xml屬性來做到這一點,但當然我會接受其他想法。當然,一些解釋也會很好 - 我想了解我的問題,不僅解決問題。 :)
正因爲如此 - 文本與ImageView的完全對齊,但仍recyclerview最後一個元素本身和佈局邊緣 – JoshuaMad
只有最後一個項目的問題之間更大的空間現在我更新了我的代碼檢查@JoshuaMad –
每一行的最後一個元素.. :(就像行中的元素不會填滿所有的橫向空間 – JoshuaMad