0

Android UI カスタム コントロールを作成することは可能ですか。1 つの線形レイアウト内に 3 つのラベルを配置する必要があります。この目的のために Linear Layout クラスを拡張する必要がありますか? クラス(線形レイアウト)を拡張せずに可能ですか?線形レイアウトと必要なラベルのみを含む単一のxmlファイルを使用することを意味しますか? Linear Layoutクラスを拡張せずに、このxmlファイルを単独で使用することは可能ですか??

前もって感謝します

4

2 に答える 2

0

はい、できます。Zaz Gmyの回答と同じように、XMLレイアウトを作成し、LinearLayoutを拡張してカスタムビューを作成する必要があります。次に、親コンテナとしてビューを使用して、ビューコードでこのレイアウトを拡張する必要があります。

inflater.inflate(R.layout.my_layout, this, true);
于 2012-05-03T10:36:22.933 に答える
0

これを使って

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Large Text"
         />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Large Text"
         />

    <TextView
        android:id="@+id/textView3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Medium Text"
       />

</LinearLayout>
于 2012-05-03T10:33:07.017 に答える