我正在编写日历应用程序,所以我要显示28-31个项目。
在最坏的情况下,我将有4行7列,在最好的情况下,我将有5行7列。
我正在使用GridLayoutManager
,所以:
recyclerView.layoutManager = GridLayoutManager(context, 7)
我没有使用任何代码来更改适配器中的代码,所以:
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): DayViewHolder {
var inflatedView = parent.inflate(R.layout.day_item_row)
return DayViewHolder(inflatedView)
}
override fun onBindViewHolder(holder: DayViewHolder, position: Int) {
val day = days[position]
}
我的RecyclerView
的xml参数:
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/calendarRecycler"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.65"
android:layout_margin="5dp"/>
对于该项目:
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/dayLinear"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/dayName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:autoSizeTextType="uniform"
android:gravity="center"
android:text="5"/>
</androidx.constraintlayout.widget.ConstraintLayout>
使项目成为正方形的最佳方法是什么,将所有RecyclerView
都自动拟合?
答案 0 :(得分:0)
为了在RecyclerView中包含正方形元素,请使项目布局(根视图)的父级成为正方形ViewGroup。在此示例中,我使用了FrameLayout,但是您可以对任何一个进行相同的操作。 (RelativeLayout,LinearLayout等)
public class SquareFrameLayout extends FrameLayout {
public SquareFrameLayout(Context context) {
super(context);
}
public SquareFrameLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public SquareFrameLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public SquareFrameLayout(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
// Set a square layout.
super.onMeasure(widthMeasureSpec, widthMeasureSpec);
}
}