第一部分
安卓開發(fā)中,在寫布局代碼的時候溪椎,ide可以看到布局的預(yù)覽效果普舆。
但是有些效果則必須在運行之后才能看見,比如這種情況:TextView在xml中沒有設(shè)置任何字符池磁,而是在activity中設(shè)置了text奔害。因此為了在ide中預(yù)覽效果,你必須在xml中為TextView控件設(shè)置android:text屬性
<TextView
android:id="@+id/text_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.Title"
android:layout_margin="@dimen/main_margin"
android:text="I am a title" />
一般我們在這樣做的時候都告訴自己地熄,沒關(guān)系,等寫完代碼我就把這些東西一并刪了芯杀。但是你可能會忘端考,以至于在你的最終產(chǎn)品中也會有這樣的代碼雅潭。
用tools吧,別做傻事
以上的情況是可以避免的却特,我們使用tools命名空間以及其屬性來解決這個問題扶供。
xmlns:tools="http://schemas.android.com/tools"
tools可以告訴Android Studio,哪些屬性在運行的時候是被忽略的裂明,只在設(shè)計布局的時候有效椿浓。比如我們要讓android:text屬性只在布局預(yù)覽中有效可以這樣
<TextView
android:id="@+id/text_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.Title"
android:layout_margin="@dimen/main_margin"
tools:text="I am a title" />
tools可以覆蓋android的所有標準屬性,將android:換成tools:即可闽晦。同時在運行的時候就連tools:本身都是被忽略的扳碍,不會被帶進apk中。
tools屬性的種類
tools屬性可以分為兩種:一種是影響Lint提示的仙蛉,一種是關(guān)于xml布局設(shè)計的笋敞。以上介紹的是tools的最基本用法:在UI設(shè)計的時候覆蓋標準的android屬性,屬于第二種荠瘪。下面介紹Lint相關(guān)的屬性夯巷。
Lint相關(guān)的屬性
tools:ignore
tools:targetApi
tools:locale
tools:ignore
ignore屬性是告訴Lint忽略xml中的某些警告。
假設(shè)我們有這樣的一個ImageView
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_main"
android:layout_marginTop="@dimen/margin_main"
android:scaleType="center"
android:src="@drawable/divider" />
Lint會提示該ImageView缺少android:contentDescription屬性哀墓。我們可以使用tools:ignore來忽略這個警告:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_main"
android:layout_marginTop="@dimen/margin_main"
android:scaleType="center"
android:src="@drawable/divider"
tools:ignore="contentDescription" />
tools:targetApi
假設(shè)minSdkLevel 15趁餐,而你使用了api21中的控件比如RippleDrawable
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/accent_color" />
則Lint會提示警告。
為了不顯示這個警告篮绰,可以:
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:color="@color/accent_color"
tools:targetApi="LOLLIPOP" />
tools:locale(本地語言)屬性
默認情況下res/values/strings.xml中的字符串會執(zhí)行拼寫檢查澎怒,如果不是英語,會提示拼寫錯誤阶牍,通過以下代碼來告訴studio本地語言不是英語喷面,就不會有提示了。
<resources
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:locale="it">
<!-- Your strings go here -->
</resources>
這篇文章首先介紹了tools的最基本用法-覆蓋android的屬性走孽,然后介紹了忽略Lint提示的屬性惧辈。下篇文章中,我們將繼續(xù)介紹關(guān)于UI預(yù)覽的其他屬性(非android標準屬性)磕瓷。
ps:關(guān)于忽略Lint的屬性盒齿,如果不想了解的話也沒關(guān)系,因為并不影響編譯困食,一般我都不會管這些警告边翁。
第二部分
這部分我們將繼續(xù)介紹關(guān)于UI預(yù)覽的其他屬性(非android標準屬性)。
tools:context
tools:menu
tools:actionBarNavMode
tools:listitem/listheader/listfooter
tools:showIn
tools:layout
tools:context
context屬性其實正是的稱呼是activity屬性硕盹,有了這個屬性符匾,ide就知道在預(yù)覽布局的時候該采用什么樣的主題。同時他還可以在android studio的java代碼中幫助找到相關(guān)的文件(Go to Related files)
該屬性的值是activity的完整包名
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.android.example.MainActivity"> <!-- ... -->
</LinearLayout>
tools:menu
告訴IDE 在預(yù)覽窗口中使用哪個菜單瘩例,這個菜單將顯示在layout的根節(jié)點上(actionbar的位置)啊胶。
其實預(yù)覽窗口非常智能甸各,如果布局和一個activity關(guān)聯(lián)(指上面所講的用tools:context關(guān)聯(lián))它將會自動查詢相關(guān)activity的onCreateOptionsMenu方法中的代碼,以顯示菜單焰坪。而menu屬性則可以覆蓋這種默認的行為趣倾。
你還可以為menu屬性定義多個菜單資源,不同的菜單資源之間用逗號隔開某饰。
tools:menu="menu_main,menu_edit"
如果你不希望在預(yù)覽圖中顯示菜單則:
tools:menu=""
最后需要注意儒恋,當主題為Theme.AppCompat時,這個屬性不起作用黔漂。
tools:actionBarNavMode
這個屬性告訴ide app bar(Material中對actionbar的稱呼)的顯示模式诫尽,其值可以是
standard
tabs
list
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:actionBarNavMode="tabs" />
同樣的,當主題是Theme.AppCompat (r21+, at least) 或者Theme.Material,或者使用了布局包含Toolbar的方式瘟仿。 該屬性也不起作用箱锐,只有holo主題才有效。
listitem, listheader 和listfooter 屬性
顧名思義就是在ListView ExpandableListView等的預(yù)覽效果中添加頭部 尾部 以及子item的預(yù)覽布局劳较。
<GridView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:listheader="@layout/list_header"
tools:listitem="@layout/list_item"
tools:listfooter="@layout/list_footer" />
layout屬性
tools:layout告訴ide驹止,F(xiàn)ragment在程序預(yù)覽的時候該顯示成什么樣
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/item_list"
android:name="com.example.fragmenttwopanel.ItemListFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
tools:layout="@android:layout/list_content" />
tools:showIn該屬性設(shè)置于一個被其他布局<include>的布局的根元素上。這讓您可以指向包含此布局的其中一個布局观蜗,在設(shè)計時這個被包含的布局會帶著周圍的外部布局被渲染臊恋。這將允許您“在上下文中”查看和編輯這個布局。需要 Studio 0.5.8 或更高版本墓捻。
關(guān)于tools 就介紹完了抖仅。
注:原文是兩篇文章
Tools of the trade?—?Part 1
Tools of the trade?—?Part 2 。
覺得完全可以在一篇文章中講完砖第,就翻譯在了一起撤卢,原文有很多和內(nèi)容無關(guān)的gif圖,描述也比較啰嗦梧兼,都被我去掉了放吩,這篇文章屬于意譯。
轉(zhuǎn)載:http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0309/2567.html