0

我正在下载示例 android 应用程序

然后在下面文件xml ini

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

    <net.example.view
        android:id="@+id/view"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="10" />

    <TextView
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="346dp"
        android:layout_weight="79.81"
        android:gravity="center_horizontal|center_vertical"
        android:text=""
        android:textSize="16pt" />

</LinearLayout>

我想问一下这个xml

 <net.example.view
       android:id="@+id/view"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
       android:layout_weight="10" />

上面的xml是什么意思,目的是什么?

4

1 回答 1

2

那是一个自定义视图。

自定义视图可以在扩展现有视图的 Java 类中定义,然后可以在布局 XML 中使用。

您可以在 Android 开发人员指南的创建自定义视图部分阅读更多关于它们的信息(并了解如何创建自己的视图) 。

于 2013-02-26T16:23:50.793 回答