我正在按照this tutorial创建一个可扩展的recyclerview。源代码是here。我的目标是扩大这种观点:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="wrap_content"
    android:orientation="horizontal">

    <com.makeramen.roundedimageview.RoundedImageView
        android:id="@+id/roundedImageView"
        android:layout_width="24dp"
        android:layout_height="24dp"
        android:layout_margin="4dp"
        android:scaleType="centerCrop"
        app:riv_corner_radius="5dp"/>

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="4dp"
        android:layout_marginBottom="4dp"
        tools:text="This is a textview" />
</LinearLayout>


而不是这里的textview:

for (int indexView = 0; indexView < intMaxNoOfChild; indexView++) {
    TextView textView = new TextView(context);
    textView.setId(indexView);
    textView.setPadding(0, 20, 0, 20);
    textView.setGravity(Gravity.CENTER);
    textView.setBackground(ContextCompat.getDrawable(context, R.drawable.background_sub_module_text));
    LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
    linearLayout_childItems.addView(textView, layoutParams);
}


如何做到这一点并为每个视图设置文本和图像?提前致谢!

最佳答案

您需要LayoutInflater才能膨胀自定义布局。 inflate函数有一些替代,您可以使用这些替代来膨胀自定义布局

View view = getLayoutInflater().inflate(R.layout.layout_name, parent, false)

07-28 12:02