android 佈局xml文件中的 tools 屬性




在Android studio中,xml的佈局文件大多數使用的是android

android:id=函數

android:layout_marginLeft=佈局

android:text=spa

...xml

等屬性utf-8

這些屬性前面的android關鍵字,實際上是對應了xml佈局文件中的:ci

xmlns:android="http://schemas.android.com/apk/res/android" 

這個是命名空間聲明,xmlns是XML Namespaces的縮寫,中文名稱是XML(標準通用標記語言的子集)命名空間,用來防止命名衝突的


那麼,xmlns:tools="http://schemas.android.com/tools"這個tools屬性有什麼用呢?


以下代碼,是一個時間顯示linearlyout佈局,顯示相似 3:58:0 的時間,

用了3個TextView,在關聯的acvitity文件中,這3個TextView顯示的內容,都使用了開發

TextView.setText函數來動態設置更新獲取到的時間。it

可是在開發過程當中,須要在xml右側的界面預覽中,觀察這3個TextView的位置是否合適,因而會在xml中,3個textView屬性中分別加入io

android:text="10",
android:text="20",
android:text="30",
以此能夠在界面預覽中觀察到位置:


那麼問題來了,這樣的話,好比我在activity中設定初始顯示時間是  3:58:10,那麼在手機中運行的時候,activity中的oncreate()方法會初始化這個時間layout

這樣,一開始的時候手機界面上顯示的時間就會是 10:20:30,而後過一小會,纔會顯示變爲在activity具體的時間獲取函數中設定的 3:58:10。



有什麼辦法解決呢,用tools

tools能夠告訴android studio,哪些xml佈局屬性只是在界面預覽的時候顯示(方便開發佈局位置),而在真正運行的時候(例如在手機上運行),而不會顯示該屬性。
咱們能夠在layout的xml文件中加入這句,

xmlns:tools="http://schemas.android.com/tools",

而後在3個textview的屬性中的

android:text="10",
android:text="20",
android:text="30",
改爲

tools:text="10",

tools:text="20",
tools:text="30",
這樣的話,在界面預覽中能顯示10:20:30,而在手機上運行的時候,是看不到的(顯示空白 : :)
詳細源代碼以下:


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        tools:text="10"                      -----//android:text 改爲了 tools:text
        android:textSize="25sp"
        android:minWidth="30sp"
        android:gravity="center"
        android:id="@+id/textView32" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text=":"
        android:id="@+id/textView33" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        tools:text="20" //android:text 改爲了 tools:text
        android:textSize="25sp"
        android:minWidth="30sp"
        android:gravity="center"
        android:id="@+id/textView34" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text=":"
        android:id="@+id/textView35" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        tools:text="30" //android:text 改爲了 tools:text
        android:textSize="25sp"
        android:minWidth="30sp"
        android:gravity="center"
        android:id="@+id/textView36" />
</LinearLayout>
相關文章
相關標籤/搜索