我想在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);
一切正常,但自定义组件与应用程序的主题不同,为什么?我该如何解决这个问题?
感谢。
答案 0 :(得分:1)
这是因为膨胀不知道它属于哪个活动或应用程序。您需要在构造函数中提供此信息,或者从您的活动而不是全局上下文中获取LayoutInflator。尝试从您的活动中调用getLayoutInflator()
并使用它来扩充您的布局。它会使布局与您的活动主题相同。
答案 1 :(得分:0)
您可以尝试:View custom = vi.inflate(R.layout.custom_list_folder, root, true);
见LayoutInflater Doc
答案 2 :(得分:0)
public View inflate (int resource, ViewGroup root, boolean attachToRoot)
参数
资源要加载的XML布局资源的ID(例如,R.layout.main_page);
root 可选视图是生成的层次结构的父级(如果attachToRoot为true),或者只是为返回的层次结构的根提供一组LayoutParams值的对象(如果attachToRoot是假的。)
attachToRoot 是否应将膨胀的层次结构附加到根参数?如果为false,则root仅用于为XML中的根视图创建LayoutParams的正确子类。 返回 膨胀层次结构的根视图。如果提供了root并且attachToRoot为true,则为root;否则它是膨胀的XML文件的根。
您必须使用此方法在根视图中对自定义视图xml进行充气。