編輯:關於Android編程
android:layout_weight用來分配更多的空間給該控件
android:layout_gravity是用來設置該button相對與父view的位置
帶layout的都是相對於父控件而言.
<?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="vertical" android:background="#D1EEEE" android:paddingLeft="16dp" android:paddingRight="16dp" > <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="to" /> <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="subject" /> <SPAN style="COLOR: #ff9966"> //android:layout_weight用來分配更多的空間給該控件</SPAN> <EditText android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1" android:gravity="top" android:hint="message" /> <SPAN style="COLOR: #ff9966"> //默認位置是距做對齊</SPAN> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Defaultsend" /> <SPAN style="COLOR: #ff9900"> //android:layout_gravity是用來設置該button相對與父view的位置</SPAN> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right" android:text="send" /> </LinearLayout> <?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="vertical" android:background="#D1EEEE" android:paddingLeft="16dp" android:paddingRight="16dp" > <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="to" /> <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="subject" /> //android:layout_weight用來分配更多的空間給該控件 <EditText android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1" android:gravity="top" android:hint="message" /> //默認位置是距做對齊 <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Defaultsend" /> //android:layout_gravity是用來設置該button相對與父view的位置 <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right" android:text="send" /> </LinearLayout>
調試手機應用程序一般先用模擬器來實現,只是因為每次都發布到手機上調試太麻煩了。當應用程序在模擬器上調試沒錯後,再發布到手機運行驗證就行了。一、模擬器創建方式為了在模擬器中
在Android中listview是最常用的控件之一,但是有時候我們會覺得千篇一律的listview看起來過於單調,於是就產生了listView動畫,listview加載
1.簡介MediaScannerJNI的在MediaScanner中的地位可參考Android MediaScanner 總綱MediaScanner JNI文件名:an
概述:Snackbar提供了一個介於Toast和AlertDialog之間輕量級控件,它可以很方便的提供消息的提示和動作反饋。有時我們想這樣一種控件,我們想他可以想Toa