android: 自定义视图布局环绕

android: custom view layout wrapping

我想要两个这样的自定义视图:

class LoadingView extends RelativeLayout{
    //this view has a progressBar and can show and hide it.

    void setIsLoading(){
        // shows/hides progress bar
    }


    // some code ...
}

class OtherView extends LoadingView{
    //some code ...
}

LoadingView 的布局如下:

<RelativeLayout>
    <FrameLayout
        id="@+id/content">
        <!--this is where content goes-->
    </FrameLayout>

    <ProgressBar
        id="@+id/pb"/>
</RelativeLayout>

以便从它继承的任何自定义视图都将被注入 FrameLayout

所以如果 OtherView 有自己的布局,它将自动嵌套在 FrameLayout 中,您将能够调用 myOtherView.setIsLoading(true/false)

你建议怎么做?

在扩充第一个视图时保留对内容的引用FrameLayout

public class LoadingView extends RelativeLayout {

    private ProgressBar progressBar;
    private FrameLayout contentFrame;

    public LoadingView(Context context) {
        super(context);
        initialize();
    }

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

    public LoadingView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        initialize();
    }

    private void initialize() {
        View root = inflate(getContext(), R.layout.loading_view, this);
        progressBar = (ProgressBar) root.findViewById(R.id.progress_bar);
        contentFrame = (FrameLayout) root.findViewById(R.id.content_frame);
    }

    public void setLoading(boolean loading) {
        progressBar.setVisibility(loading ? VISIBLE : GONE);
    }

    protected FrameLayout getContentFrame() {
        return contentFrame;
    }

}

然后在给子视图充气时使用getContentFrame作为父视图

public class OtherView extends LoadingView {

    public OtherView(Context context) {
        super(context);
        initialize();
    }

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

    public OtherView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        initialize();
    }

    private void initialize() {
        View root = inflate(getContext(), R.layout.other_view, getContentFrame());
    }

}

loading_view.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <ProgressBar
        android:id="@+id/progress_bar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</RelativeLayout>

other_view.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="vertical">

    <TextView
        android:text="Title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <TextView
        android:text="Subtitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>

然后像这样使用它

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <com.example.client.ui.OtherView
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</FrameLayout>