編輯:Android開發實例
1.TextView :顯示文本的標簽。其xml布局文件中的代碼為:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello,my name is TextView,I am maily show some text."
/>
其他的屬性還有:android:typeface,android:textStyle,android:textColor
2.Button: 按鈕控件是TextView 的子類,xml 布局文件中的代碼為:
<?xml version="1.0" encoding="utf-8"?>
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:text="Hello,my name Button,I am the subclass of TextView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
3.ImageView 和ImageButton:分別是TextView 和TextButton 的類似物
每個都有android:src屬性,指出圖片的位置。ImageView 的xml布局文件的例子如下:
<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/icon"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:src="@drawable/ffffgggg"
/>
4.EditText 也是TextView 的子類,另外的屬性為:android:autoText、android:capitalize、android:digits、android:singleLine等。
其簡單xml 布局代碼為:
<?xml version="1.0" encoding="utf-8"?>
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/field"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="You can type words here..."
android:singleLine="false"
/>
Android提供了許多方法來控制播放的音頻/視頻文件和流。其中該方法是通過一類稱為MediaPlayer。Android是提供MediaPlayer類訪問內置的媒體播放
Android提供了許多方法來控制播放的音頻/視頻文件和流。其中該方法是通過一類稱為MediaPlayer。Android是提供MediaPlayer類訪問內置的媒體播放
1. UiObejct.getFromParent()的用法:從這個名字就知道,就是從當前對象的父對象中查找想要的子對象,該子對象和當前對象應該是同一層級。 如
登錄應用程序的屏幕,詢問憑據登錄到一些特定的應用。可能需要登錄到Facebook,微博等本章介紹了,如何創建一個登錄界面,以及如何管理安全問題和錯誤嘗試。首先,必須定義兩