TextView 和 Button

<RelativeLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".HelloWordActivity" >
 
    <TextView   
                                    
        android:id="@+id/show"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="@string/hello_world" />


        <!-- android:id指定該空間的唯一標識,在java程序中可通過findViewById("id")來獲取指定的Android 界面組件 -->
        <!-- android:layout_width指定該界面組件內的寬度。如果該屬性值爲math_parent,則說明該組件與其父容器具有相同的寬度,如果該容器屬性值爲wrap_content,這說明該組件的寬度取決於它的內容,即包裹它的內容即可 -->
        <!-- android:layout_height指定該界面組件內的高度。如果該屬性值爲math_parent,則說明該組件與其父容器具有相同的高度,如果該容器屬性值爲wrap_content,這說明該組件的高度取決於它的內容,即包裹它的內容即可 -->
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/show"
        android:text="單擊我" 
        android:onClick="clickHandler"
        />
        <!--Button代表一個按鈕 -->


</RelativeLayout>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章