如何以编程方式将视图添加到viewParent?

时间:2016-08-28 17:12:35

标签: android xml view android-coordinatorlayout

我有一个xml布局文件,如下所示

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/homeCoordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivitys.ViewPager.Fragments.Home">
    <com.yalantis.phoenix.PullToRefreshView
        android:id="@+id/pull_to_refresh"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <android.support.v7.widget.RecyclerView
            android:id="@+id/fragment_dashboard_recycler"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        </android.support.v7.widget.RecyclerView>
    </com.yalantis.phoenix.PullToRefreshView>
</android.support.design.widget.CoordinatorLayout>

我想以编程方式将一个视图添加到pulltorefresh的容器中,我已将其添加到我的协调器中,如下所示,但我不知道如何将它添加到我的pulltorefresh任何想法?

 CoordinatorLayout coordinatorLayout=(CoordinatorLayout)view.findViewById(R.id.homeCoordinatorLayout);
        ImageView imageView=new ImageView(getActivity());
        imageView.setImageResource(R.drawable.ufo);

1 个答案:

答案 0 :(得分:0)

coordinatorLayout.addView(imageView);

修改*
如果您想了解更多有关该主题的信息,请在此处找到:
1. ViewManager官方文件。
2.直截了当Tutorial关于如何通过Mysamplecode添加各种视图 3.关于这个问题的相关SO answer以防止常见的误解。