android app開發用好styles.xml==>方便,簡潔明瞭,再也不用暈冗繁程式碼啦
androidstyles.xml是android格式的編輯利器
- android的styles.xml檔案
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="button_style">
<item name="android:layout_width">"wrap_content"</item>
<item name="android:layout_height">"wrap_content"</item>
<item name="android:text">"Welcome you"</item>
</style>
<style name="button_style">
<item name="android:layout_width">"wrap_content"</item>
<item name="android:layout_height">"wrap_content"</item>
<item name="android:text">"Welcome you"</item>
</style>
</resources>
<Button
2. 佈局檔案activtity_main.xml擷取
<Button
android:id="@+id/button1"
style="@style/button_style"/>
<Button
android:id="@+id/button2"
style="@style/button_style"/>
<Button
android:id="@+id/button3"
style="@style/button_style"/>
3不用styles.xml檔案時(1+2)等價3需要的佈局檔案
activtity_main.xml
擷取
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
4佈局檔案的相同style程式碼越多,越凸顯styles.xml的輕便
相關文章
- 證書頒發機構再也不用更改密碼啦!密碼
- 用好程式碼塊,提供開發效率
- 高效理解排序之——選擇排序-含JAVA程式碼(簡潔明瞭,非無腦COPY)排序Java
- JavaScript 程式碼簡潔之道JavaScript
- JavaScript程式碼簡潔之道JavaScript
- Android & Java 書寫簡潔規範的程式碼AndroidJava
- Kotlin-for-Android : 讓你的Android程式碼更簡潔KotlinAndroid
- Android高階開發面試題目,再也不用擔心不能升職加薪了。Android面試題
- 【簡潔明瞭】python中用pip 安裝、更新以及更新固定的包Python
- UITableView 自動計算 cell 高度並快取,再也不用管高度啦UIView快取
- JS程式碼簡潔之道--函式JS函式
- 如何編寫簡潔的程式碼?
- Clean Code PHP 程式碼簡潔之道PHP
- PHP程式碼規範簡潔之道PHP
- PHP 程式碼規範簡潔之道PHP
- 使用ONE.Abp快速開發微服務,再也不用加班了微服務
- git簡單明瞭Git
- 前端有了這兩樣神器,再也不用追著後臺要介面啦前端
- 世界首個AR交友應用上線,再也不用擔心找不到物件啦!物件
- gitee上傳程式碼到倉庫步驟(最簡潔圖文+命令說明)Gitee
- PHP程式碼簡潔之道——變數部分PHP變數
- PHP程式碼簡潔之道——函式部分PHP函式
- JAVA基礎之程式碼簡潔之道Java
- 程式碼簡潔的十條建議
- Java 簡潔程式碼利器 —— Lambda 表示式Java
- 智慧打底褲:再也不用擔心尺碼了
- 「毀滅戰士3」原始碼就是“保持簡潔”的證明原始碼
- 再也不用擔心 SSH 斷開了 - tmux 命令UX
- 安裝一條龍,媽媽再也不用擔心我不會安裝啦
- 可能是最簡潔明瞭的數字金額中文大寫函式 (轉)函式
- 轉載一段簡潔明瞭的python程式碼 實現了讀取檔案並按行反轉後輸出Python
- 再也不用擔心網頁編碼的坑了!網頁
- Java之列舉, 程式設計師應該掌握的開發技巧“簡潔易懂又安全的程式碼”Java程式設計師
- Android應用開發之(利用好圖片快取)Android快取
- Spring Boot 整合 Lombok 讓程式碼更簡潔Spring BootLombok
- Android簡潔架構設計Android架構
- 直播系統app原始碼,簡潔好看的登入頁面APP原始碼
- Android 一款十分簡潔、優雅的日記 APPAndroidAPP