首页 > 代码库 > main.xml注释

main.xml注释

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout//表示布局管理器的布局形式,此为线型布局    xmlns:android="http://schemas.android.com/apk/res/android"

 android:orientation="vertical"//组件的排列方式,此为垂直排列    android:layout_width="fill_parent" //此布局管理器的屏幕宽度,现在为当前手机宽度  android:layout_height="fill_parent"> //此布局管理器的屏幕高度,现在为手机高度  <TextView//此为文本显示组件,显示提示信息的     android:layout_width="fill_parent" //指的是此组件的宽度为屏幕的宽度

  android:layout_height="wrap_content"//组件的高度为文字的高度     android:text="@string/hello" />//组件的默认显示文字,此时为strings.xml

    <TextView     android:id="@+id/mytext"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content" />

 <Button

  android:id="@+id/mybut"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content" />

</LinearLayout>

main.xml注释