我将尝试以一种非常清晰易懂的方式来解释我的问题。

我当前在这里使用SwipeView:http://jasonfry.co.uk/?id=23

<uk.co.jasonfry.android.tools.ui.SwipeView
    android:id="@+id/swipe_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
                <View android:id="@+id/view1" />
                <View android:id="@+id/view2" />
                <View android:id="@+id/view3" />
</uk.co.jasonfry.android.tools.ui.SwipeView>


那很简单而且功能强大,当然可以正常工作。

我现在想要实现的是在此SwipeView中以编程方式添加一些闲置时间。

我现在有了:

    SwipeView svmain=(SwipeView) findViewById(R.id.svmain);
    //View v= findViewById(R.layout.anylayout);
    svmain.addView(v);


崩溃是因为我要添加的xml不在我的主布局中。

任何想法?

最佳答案

刚找到答案:

    SwipeView svmain=(SwipeView) findViewById(R.id.svmain);
    LayoutInflater inflater = (LayoutInflater)   getBaseContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View view = inflater.inflate(R.layout.header, null);
    svmain.addView(view);
    View view2 = inflater.inflate(R.layout.header, null);
    svmain.addView(view2);
    View view3 = inflater.inflate(R.layout.header, null);
    svmain.addView(view3);

08-29 00:23