0

我有一个 root_layout :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/background"
android:weightSum="10">

    <FrameLayout
        android:id="@+id/parentViewHolder"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_weight="8"
        android:background="@android:color/transparent"
        android:cacheColorHint="@android:color/transparent" >
    </FrameLayout>

    <TextView
        android:id="@+id/spaceHolder"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:text="TEXT">
    </TextView>

现在我希望,每次我想更改屏幕时,使用这些布局并填充另一个声明的 layout.xml

我试着用

    protected void Setup(int _layoutResourceId) 
{ 
    layoutResourceId = _layoutResourceId;
    FrameLayout holder = (FrameLayout) activity.findViewById(R.id.parentViewHolder);

    LayoutInflater layoutInflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);    
    holder.addView(layoutInflater.inflate(layoutResourceId, null, false)); 
    activity.screen = this;
}

但这并没有正常工作。有人知道更好的实现吗?

4

3 回答 3

1

您可以像这样重用布局:

首先,实现问题中描述的布局。例如,它的文件名为 root_layout.xml。

然后,如果您想在另一个视图中使用它,只需将其添加到您的 xml 文件中:

<include layout="@layout/root_layout"></include>

而 root_layout 将被膨胀到另一个布局中。

请注意,root_layout 的每个属性都被保留。所以要注意他们。

于 2012-06-14T14:52:21.910 回答
1

你没有说它是如何不工作的,所以我假设你在屏幕上留下了两个视图......你应该使用removeAllViews().

试试这个:

protected void Setup(int _layoutResourceId)  
{  
    layoutResourceId = _layoutResourceId; 
    FrameLayout holder = (FrameLayout) activity.findViewById(R.id.parentViewHolder); 
    holder.removeAllViews();  
    LayoutInflater layoutInflater = (LayoutInflater)activity.getSystemService (Context.LAYOUT_INFLATER_SERVICE);     
    holder.addView(layoutInflater.inflate(layoutResourceId, null, false));  
    activity.screen = this; 
} 
于 2012-06-14T14:53:48.467 回答
1

如果您想FrameLayout从您发布的布局中添加不同的布局,您应该这样做:

protected void Setup(int _layoutResourceId) { 
    layoutResourceId = _layoutResourceId;
    FrameLayout holder = (FrameLayout) activity.findViewById(R.id.parentViewHolder);
    holder.removeAllViews();
    LayoutInflater layoutInflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);    
    layoutInflater.inflate(layoutResourceId, holder, true)); 
    activity.screen = this;
}
于 2012-06-14T14:56:30.337 回答