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

これは、inflated がどのアクティビティまたはアプリケーションに属しているかを認識していないために発生します。コンストラクターでこの情報を提供するか、グローバル コンテキストではなくアクティビティから LayoutInflator を取得する必要があります。アクティビティから呼び出しgetLayoutInflator()て、それを使用してレイアウトを膨らませてみてください。アクティビティと同じテーマでレイアウトを膨らませます。

于 2013-08-29T12:07:52.983 に答える
0
public View inflate (int resource, ViewGroup root, boolean attachToRoot)

パラメーター

ロードする XML レイアウト リソースのリソース ID (例: R.layout.main_page);

root 生成された階層の親となるオプションのビュー (attachToRoot が true の場合)、または単に返された階層のルートの LayoutParams 値のセットを提供するオブジェクト (attachToRoot が false の場合)。

attachToRoot 膨張した階層をルート パラメータにアタッチする必要があるかどうか。false の場合、ルートは XML のルート ビューの LayoutParams の正しいサブクラスを作成するためにのみ使用されます。戻り値 インフレートされた階層のルート ビュー。root が指定され、attachToRoot が true の場合、これは root です。それ以外の場合は、インフレートされた XML ファイルのルートです。

ルート ビューでカスタム ビュー xml をインフレートするには、このメソッドを使用する必要があります。

于 2013-08-29T13:06:04.513 に答える