昨日看到有人在知乎上問這3個瑣碎的小知識點,今天索性就整理了一下,其實這些知識點並不難,可是不少開發者平時不多注意到這些,android
致使的後果就是開發的時候 常常會被ide報錯,開發效率很低,或者看開源代碼的時候不少地方看不懂。android-studio
考慮到如今愈來愈多的人開發環境遷移到android studio,因此一切以android studio環境爲準。和eclipse開發環境相比其實二者是差很少的,eclipse
偶有區別 主要也是android studio引入的gradle腳本形成差別。ide
首先來看看tools標籤。佈局
這個地方不少人不明白xmlns:tools 這行代碼是幹嗎的,好像刪除了之後對程序也沒麼影響,實際上這個tools標籤主要是爲adt插件使用的。性能
他裏面的不少屬性能在很大程度上方便咱們的開發,可是並不會影響咱們最終生成的apk包。好比你們在寫一個界面的時候通常都會給gradle
textview寫上text的值,而後在開發完畢的時候再刪除他,這個操做就很麻煩,可是如今你就能夠。spa
若是加上tools:text 你就能夠在界面預覽中看到效果,可是實際運行時是不會有效果的。很方便的,一樣的以往咱們在開發listview的時候之因此累就是沒法預覽listview的item效果,插件
每次都得運行之後才能看到。可是如今你只須要利用tools標籤。code
而後你無需run你的程序 直接在界面預覽就能看到item的效果
官方給出的文檔在這裏 http://tools.android.com/tech-docs/tools-attributes
有興趣的同窗能夠上去本身看看,試試看這些標籤,對開發速度會有顯著的提高的~~
另外再說下 res和res-auto的區別。
1 xmlns:android="http://schemas.android.com/apk/res/android" 2 3 xmlns:customview="http://schemas.android.com/apk/res-auto"
這2個實際上前者是就是讓你引用系統自帶屬性的,後者是讓你使用lib庫裏自定義屬性的。
可是這個地方要注意,在eclipse中若是要使用你自定義的屬性 是不能用res-auto的
必須得替換成你自定義view所屬的包名,若是你在剛好使用的自定義屬性被作成了lib
那就只能使用res-auto了,而在android-studio裏,不管你是本身寫自定義view
仍是引用的lib裏的自定義的view 都只能使用res-auto這個寫法。之前那個包名的寫法
在android-studio裏是被廢棄沒法使用的。
最後咱們來看看TypedArray和attrs之間的區別異同以及在自定義view裏的應用。
首先咱們自定義幾個屬性
1 <?xml version="1.0" encoding="utf-8"?> 2 <resources> 3 <declare-styleable name="attrName"> 4 <attr name="name" format="string"></attr> 5 <attr name="number" format="integer"></attr> 6 </declare-styleable> 7 8 9 </resources>
而後佈局文件
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:customview="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <com.example.administrator.popupmenu.CustomView android:layout_width="100dp" android:layout_height="100dp" android:padding="@dimen/padding" customview:name="@string/hello_world" customview:number="123" /> </LinearLayout>
而後看下自定義view的源碼
1 package com.example.administrator.popupmenu; 2 3 import android.content.Context; 4 import android.content.res.TypedArray; 5 import android.util.AttributeSet; 6 import android.util.Log; 7 import android.view.View; 8 9 /** 10 * Created by Administrator on 2015/8/18. 11 */ 12 public class CustomView extends View { 13 14 private static final String TAG = CustomView.class.getSimpleName(); 15 16 public CustomView(Context context, AttributeSet attrs) { 17 super(context, attrs); 18 TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.attrName); 19 String name = ta.getString(R.styleable.attrName_name); 20 int number = ta.getInteger(R.styleable.attrName_number, -1); 21 Log.e(TAG, "name=" + name + " number=" + number); 22 23 /** 24 * attrs在取值的時候 缺陷就是若是值裏面還有相似的引用 則取不到正確的值 25 * 須要額外 26 * 27 */ 28 for (int i = 0; i < attrs.getAttributeCount(); i++) { 29 Log.e(TAG, "attrs name=" + attrs.getAttributeName(i) + " attrs value=" + attrs.getAttributeValue(i)); 30 //取出來實際的像素的值 31 if (attrs.getAttributeName(i).equals("padding")) { 32 ; 33 Log.e(TAG, "attrs name=" + attrs.getAttributeName(i) + " attrs value=" + getResources().getDimension(attrs.getAttributeResourceValue(i, -1))); 34 35 } 36 //這個地方就能看出來TypedArray比attrs要好用的多~同時也能夠理解二者區別了 37 if (attrs.getAttributeName(i).equals("name")) { 38 ; 39 Log.e(TAG, "attrs name=" + attrs.getAttributeName(i) + " attrs value=" + getResources().getString(attrs.getAttributeResourceValue(i, -1))); 40 41 } 42 } 43 ta.recycle(); 44 45 46 } 47 }
最後看下咱們的輸出。