1

我想在 LinearLayout 中动态添加自定义组件。

这是我活动的一段代码,我想在其中插入一个自定义组件:

 <LinearLayout
            android:id="@+id/layout_cartelle_immagini"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/border_bottom"
            android:orientation="vertical" >

        </LinearLayout>

这是我的自定义组件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/border_bottom"
    android:layout_marginBottom="2dp"
    android:paddingRight="20dp"
    android:paddingLeft="20dp" >

    <TextView
        android:id="@+id/label_pathFolder"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:gravity="center"
        android:padding="20dp"
        android:textSize="25sp" />

    <Spinner
        android:id="@+id/spinner_level"
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@+id/btn_show_desc_img"
        android:entries="@array/n_level_array"
        android:padding="20dp"
        android:prompt="@string/n_level_prompt" />

    <ImageButton
        android:id="@+id/btn_show_desc_img"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@+id/btn_remove_folder"
        android:layout_marginLeft="20dp"
        android:layout_centerVertical="true"
        android:background="@drawable/button_press"
        android:contentDescription="@string/showDescImg"
        android:src="@drawable/ic_desc" />

    <ImageButton
        android:id="@+id/btn_remove_folder"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:background="@drawable/button_press"
        android:contentDescription="@string/showDescImg"
        android:src="@drawable/ic_delete" />

</RelativeLayout>

这是我用来添加组件的一段代码:

LayoutInflater vi = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View root = findViewById(R.id.layout_cartelle_immagini);
View custom = vi.inflate(R.layout.custom_list_folder, null);
...
..
((ViewGroup) root).addView(custom, 0);

一切正常,但自定义组件与应用程序的主题不同,为什么?我该如何解决这个问题?

谢谢。

4

3 回答 3

2

发生这种情况是因为膨胀的不知道它属于哪个活动或应用程序。您需要在构造函数中提供此信息或从您的活动而不是全局上下文中获取 LayoutInflator。尝试从您的活动中调用getLayoutInflator()并使用它来扩展您的布局。它将使用与您的活动相同的主题来膨胀布局。

于 2013-08-29T12:07:52.983 回答
1

您可以尝试:View custom = vi.inflate(R.layout.custom_list_folder, root, true); 请参阅LayoutInflater Doc

于 2013-08-29T12:21:34.037 回答
0
public View inflate (int resource, ViewGroup root, boolean attachToRoot)

参数

要加载的 XML 布局资源的资源 ID(例如,R.layout.main_page);

root 可选视图,作为生成的层次结构的父级(如果 attachToRoot 为真),或者只是为返回的层次结构的根提供一组 LayoutParams 值的对象(如果 attachToRoot 为假。)

attachToRoot 膨胀的层次结构是否应该附加到根参数?如果为 false,则 root 仅用于为 XML 中的根视图创建正确的 LayoutParams 子类。返回 膨胀层次结构的根视图。如果提供了 root 并且 attachToRoot 为真,则这是 root;否则它是膨胀的 XML 文件的根。

您必须使用此方法在根视图中扩展您的自定义视图 xml。

于 2013-08-29T13:06:04.513 回答