Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android常用技巧編寫方式總結

Android常用技巧編寫方式總結

編輯:高級開發

android模擬器中對這一操作系統進行編寫,大多數人都會總結出自己的一套方式技巧,來提高編寫速度。我們在這裡為大家總結了幾個常用功能實現技巧,希望能夠給大家在實際編程中帶來一些幫助。

android常用技巧之按鈕:

XML代碼

  1. < Button android:id="@+id/jump"
  2. android:layout_width="fill_parent"
  3. android:layout_height="wrap_content"
  4. android:text="button to"
  5. />
  6. < Button android:id="@+id/jump"
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:text="button to"
  10. />

android常用技巧之顯示文本

XML代碼

  1. < TextVIEw android:id="@+id/result"
  2. android:layout_width="fill_parent"
  3. android:layout_height="wrap_content"
  4. android:text=""
  5. />
  6. < TextVIEw android:id="@+id/result"
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:text=""
  10. />

android常用技巧之編輯框:

XML代碼

  1. < EditText android:id="@+id/height"
  2. android:layout_width="fill_parent"
  3. android:layout_height="wrap_content"
  4. android:numeric="integer"
  5. android:text=""
  6. />
  7. < EditText android:id="@+id/height"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:numeric="integer"
  11. android:text=""
  12. />

android常用技巧之支持多行:

XML代碼

  1. < EditText id="@+id/Text1"
  2. android:layout_width="200sp"
  3. android:layout_height="24sp"
  4. android:text="Text1"
  5. android:singleLine="True"
  6. />
  7. < EditText id="@+id/text3"
  8. android:layout_width="180px"
  9. android:layout_height="80px"
  10. android:text="Text3 width='180px'
    android:singleLine='False'"
  11. android:singleLine="False"
  12. />
  13. < EditText id="@+id/Text1"
  14. android:layout_width="200sp"
  15. android:layout_height="24sp"
  16. android:text="Text1"
  17. android:singleLine="True"
  18. />
  19. < EditText id="@+id/text3"
  20. android:layout_width="180px"
  21. android:layout_height="80px"
  22. android:text="Text3 width='180px'
    android:singleLine='False'"
  23. android:singleLine="False"
  24. />

android常用技巧的一些實際操作方法就為大家介紹到這裡。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved