Как накачать XML-макет в классе RelativeLayout в Android?

Создайте класс RelativeLayout в моем пакете View и разлейте XML-файл в классе для использования в основной деятельности, но без ошибок эмулятор остановился

import android.content.Context;
import android.content.res.AssetManager;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.EditText
import android.widget.RelativeLayout;
import android.widget.TextView;

import net.sibdiet.R;

public class AboutView extends RelativeLayout {

    private TextView about_txt;
    private AssetManager assets;

    public AboutView(Context context) {
        super( context );
        initializeViews( context );
    }

    public AboutView(Context context, AttributeSet attrs) {
        super( context, attrs );
        initializeViews( context );
    }

    private void initializeViews(Context context) {
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        inflater.inflate(R.layout.aboutus_layout, this);
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        about_txt = (EditText) findViewById(R.id.aboutus_txt);
    }

    public AssetManager getAssets() {
        return assets;
    }
}

мне нужно надуть aboutus_layout.xml

<merge
    xmlns:android="http://schemas.android.com/apk/res/android">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/aboutus_txt"
            android:layout_width="61dp"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_marginRight="16dp"
            android:layout_marginTop="16dp"
            android:text="@string/about"
            android:textColor="@color/Green"
            android:textSize="20sp"/>

    </RelativeLayout>
</merge>

использовать пользовательский вид в основной деятельности main_activity.xml

<?xml version="1.0" encoding="utf-8"?>

<android.support.constraint.ConstraintLayout 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="match_parent"
    android:background="#DCDCDC"
    tools:context="net.sibdiet.MainActivity">

    <net.sibdiet.View.AboutView
        android:id="@+id/about_us_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</android.support.constraint.ConstraintLayout>

blah Ваш пост содержит код, который неправильно отформатирован как код. Сделайте отступы всего кода на 4 пробела, используя кнопку на панели инструментов кода или сочетание клавиш CTRL+K. Для получения дополнительной справки по редактированию щелкните значок панели инструментов [?].

1 ответ

Решение

Проблемы вашего кода:

1) Заменить LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); с LayoutInflater inflater = LayoutInflater.from(getContext())

2) Удалить RelativeLayout из вашего aboutus_layout.xml, потому что там его лишнее. делает ваше представление (AboutView) корнем иерархии представления.

Другие вопросы по тегам