background image

Android 常用技巧编写方式总结

Android 模拟器中对这一操作系统进行编写,大多数人都会总结出自己的一套方式

技巧,来提高编写速度。我们在这里为大家总结了几个常用功能的实现技巧,希望能够给大
家在实际编程中带来一些帮助。

Android 常用技巧之按钮:

Xml 代码

1

< Button android:id="@+id/jump"   android:layout_width="fill_parent"   

2

android:layout_height="wrap_content"   android:text="button to"   

3

/>   < Button android:id="@+id/jump" 

4

android:layout_width="fill_parent" android:layout_height="wrap_content" 

5

android:text="button to" /> 

Android 常用技巧之显示文本

Xml 代码

6

< TextView android:id="@+id/result"   android:layout_width="fill_parent"   

7

android:layout_height="wrap_content"   android:text=""   

8

/>   < TextView android:id="@+id/result" 

9

android:layout_width="fill_parent" android:layout_height="wrap_content" 

10

android:text="" />  

Android 常用技巧之编辑框:

Xml 代码

11

< EditText android:id="@+id/height"   android:layout_width="fill_parent"   

12

android:layout_height="wrap_content"   android:numeric="integer"   

13

android:text=""   />   

14

< EditText android:id="@+id/height" android:layout_width="fill_parent" 

15

android:layout_height="wrap_content" android:numeric="integer" 

16

android:text="" />  

Android 常用技巧之支持多行:

Xml 代码