Android ApiDemos详解之App_Activity_Hello World(6)

来源:互联网 发布:淘宝试用中心报名技巧 编辑:程序博客网 时间:2024/04/29 18:25

AndroidApiDemos详解之App->Actiivity->Hello World

说起Hello World,大家一定再熟不过了,所有的语言的第一个例子貌似都是Hello World,该例子有什么特殊之处呢?答案是:没有,但是为了保证该系列的完整,我们不能错过任何一个例子。下面首先来看下这个经典的界面:


本例中我们只需看一下布局文件的代码就OK了,如下所示:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"android:id="@+id/text"    android:layout_width="match_parent" android:layout_height="match_parent"    android:gravity="center_vertical|center_horizontal"    android:textAppearance="?android:attr/textAppearanceMedium"android:text="@string/hello_world"/>

该布局文件只有一个简单的TextView,需要一提的是该TextView的文字外观设置属性,

android:textAppearance="?android:attr/textAppearanceMedium"

其中"?"表示是否有这种外观,如果没有则使用默认的外观,可以设置的其他值如下:

textAppearanceButton

textAppearanceInverse

textAppearanceLarge

textAppearanceLargeInverse

textAppearanceMedium

textAppearanceSmallInverse

textAppearanceMediumInverse

textAppearanceSmall

好了,该例讲解到此为止