Я использую RecyclerView для отображения элементов в макете сетки.
Ниже изображение эмулятора и желаемых результатов, которых мне нужно достичь.
Изображение с левой стороны (выполняющееся) - это вывод в моем эмуляторе, а изображение с правой стороны (желаемое) - это выход, который я хочу получить.
Схема деятельности XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/parentLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#d3c3c3">
<include
android:id="@+id/toolBarIncluded"
layout="@layout/toolbar_new_layout" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolBarIncluded"
android:orientation="vertical"
android:weightSum="1">
<RelativeLayout
android:id="@+id/recyclerAdView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:layout_weight="0.65"
android:background="#009688" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/recyclerAdView"
android:layout_gravity="center"
android:layout_weight="0.35"
android:background="#00000000"
android:gravity="center">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerGridView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dp"
android:background="#00000000"
android:foregroundGravity="center" />
</RelativeLayout>
</LinearLayout>
Элемент списка XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llGridItemLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="6dp"
android:background="@drawable/drawable_grid_item_background"
android:gravity="center"
android:paddingStart="2dp"
android:paddingEnd="2dp"
android:orientation="vertical">
<ImageView
android:id="@+id/ivItemIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:src="@drawable/ic_new_receipt_wrong" />
<TextView
android:layout_marginTop="6dp"
android:id="@+id/tvItemName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lines="1"
android:text="My Complaints"
android:textSize="14sp" />
</LinearLayout>
Фрагмент кода активности
gridLayoutManager = new GridLayoutManager(MainActivity.this, 3);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(gridLayoutManager);
recyclerView.setAdapter(demoDashAdapter);
Фрагмент кода адаптера
int viewHeight ,viewWidth ;
public onCreateViewHolder(){
viewHeight = viewGroup.getMeasuredHeight() / 4;
viewWidth = viewGroup.getMeasuredWidth() / 3;
...
}
public onBindViewHolder(){
viewHolder.itemLayout.setMinimumWidth(viewWidth);
viewHolder.itemLayout.setMinimumHeight(viewHeight);
...
}
Следовательно, мой вопрос здесь, как я могу динамически изменить размеры элементов в recyclerView. Обратите внимание, что я использую вес макета как 0,65 и 0,35 против веса 1:
пожалуйста, ведите меня.