Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
77 views
in Technique[技术] by (71.8m points)

java - how to create a custom component with a xml file android

I have an xml file and I want to change it to a component by using a class which extends View. how Can I do that ??

java code :

public class custom extends View {

public custom(Context context) {
    super(context);

}

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

}

and this is my xml code :

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.apd.ecryptfolders.custom">

<View
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000"/>

Thanks!

question from:https://stackoverflow.com/questions/65853013/how-to-create-a-custom-component-with-a-xml-file-android

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You have to create a class that extends layout root view and then inflate the xml layout

public class CustomView extends RelativeLayout {
    public CustomView(Context context) {
        super(context);
        View view = inflate(getContext(), R.layout.layout_name, null);
        addView(view);
        // init layout
    }
    public CustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        View view = inflate(getContext(), R.layout.layout_name, null);
        addView(view);
        // here you can apply custom attributes
        // init layout
    }
}

These links can help you:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...