Как раздуть пользовательский макет и отредактировать свои представления в этом случае? - PullRequest
0 голосов
/ 08 января 2020

Я следую этому руководству , чтобы создать расширяемое представление переработчика. Исходный код здесь . Моя цель состоит в том, чтобы раздуть это представление:

<?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>

вместо текстового представления здесь:

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);
}

Как я могу это сделать и установить текст и изображение для каждого вида? Заранее спасибо!

1 Ответ

0 голосов
/ 08 января 2020

Вам нужен LayoutInflater , чтобы иметь возможность раздувать пользовательские макеты. Для функции inflate есть несколько переопределений, которые можно использовать для раздувания пользовательских макетов

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