0

是否可以创建一个 android UI 自定义控件。我需要将三个标签放置在单个线性布局中。我是否需要为此目的扩展线性布局类?是否可以不扩展类(线性布局) - 意味着仅使用具有线性布局和所需标签的单个 xml 文件?是否可以单独使用这个 xml 文件而不扩展线性布局类?

提前致谢

4

2 回答 2

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 回答
0

是的你可以。您必须创建 XML 布局,就像在 Zaz Gmy 的回答中一样,并通过扩展 LinearLayout 创建您的自定义视图。然后,您必须在视图代码中使用视图作为父容器来扩展此布局:

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