關注微信公衆號:程序員小安,精彩文章按期推送。android
Android 中的過分繪製是指同一個像素被繪製屢次,從繪製性能角度講,同一像素點被繪製的次數固然越少越好,這樣有利於減輕 GPU 的工做壓力,事實上,在具體開發過程當中 ,不可避免的可能會出現過分繪製,這裏,Android 系統自己在開發者選項裏已經提供了一個選項開關 Debug GPU overdraw(調試 GPU 過分繪製),用於檢測 App 的過分繪製, 只要打開這個開關,App 界面就會在不一樣的界面區域根據像素的繪製次數顯示出不一樣的顏色。git
1)打開手機的過分繪製開關。 操做順序:【設置--->更多設置--->開發者模式--->調試GPU過分繪製--->顯示過分繪製區域】程序員
最後打開後如圖所示: github
2)顏色的標識xcode
從好到差:藍-綠-淡紅-紅,具體表現爲: 1.藍色1x過分繪製 2.綠色2x過分繪製 3.淡紅色3x過分繪製 4.紅色超過4x過分繪製bash
官方對過分渲染的圖片介紹: 微信
3)驗收標準 1.控制過分繪製爲2x 2.不容許存在4x過分繪製 3.不容許存在面積超過屏幕1/4區域的3x過分繪製(淡紅色區域)ide
因爲公司項目不能拿來開放,本身寫了個相似的登錄界面,以下所示: 工具
能夠看到,由於該界面佈局簡單,可是簡單的界面也出現了紅色,說明出現了過分渲染,下面咱們就解決掉當前界面的過分渲染問題。1)利用DDMS觀察其餘應用佈局實現方式 佈局
具體使用方法前面已經介紹過: blog.csdn.net/dfskhgalshg… 缺點:只能看清楚層次,不能知道具體什麼緣由致使過分渲染。2)JakeWharton大神的scalpel github鏈接:github.com/JakeWharton… 將當前頁面的佈局3D化,有點像xcode上的view ui hierarchy工具,效果如圖所示:
優勢: 1.能夠很方便的在頁面上看到佈局的id,從而快速找出對應出問題的控件。 2.支持3D跟縮放功能,能夠清晰看到佈局文件的層次結構,跟引發過分渲染的層次或者對應的佈局塊,很是靈活。
使用步驟: 1.build.gralde中加入以下代碼:
compile 'com.jakewharton.scalpel:scalpel:1.1.2'
複製代碼
2.使用的時候你的layout根節點必須是 ScalpelFrameLayout
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
View mainView = getLayoutInflater().inflate(R.layout.activity_main,null);
ScalpelFrameLayout scalpelFrameLayout = new ScalpelFrameLayout(this);
scalpelFrameLayout.addView(mainView);
scalpelFrameLayout.setLayerInteractionEnabled(true);
scalpelFrameLayout.setDrawIds(true);
setContentView(scalpelFrameLayout);
initView();
loadData();
}
複製代碼
3.其餘方法
開啓3D效果 : setLayerInteractionEnabled(boolean).
顯隱DrawViews:setDrawViews(boolean).
顯隱 view ID: setDrawIds(boolean).
修改邊框的顏色和陰影 setChromeColor(int) and setChromeShadowColor(int).
複製代碼
配置完成後,運行項目,當前頁面則會呈現上圖的效果。經過觸摸頁面,能夠清楚的看到每一個控件的id以及佈局層次。從上圖能夠看到,過分渲染呈現出來的綠色,紅色都是成塊的,我這邊LinearLayout沒有定義id,若是定義id就更容易看出來,成塊的都是LinearLayout佈局,也就是背景顏色設置重複形成頁面過分渲染。
4.查看xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@mipmap/service_top_bg" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:background="#ffffff"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="12dp"
android:text="用戶名"
android:textSize="20sp" />
<EditText
android:id="@+id/user_name"
android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_marginLeft="12dp"
android:background="@null"
android:hint="請輸入用戶名"
android:textSize="20sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="12dp"
android:text="密碼"
android:textSize="20sp" />
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_marginLeft="12dp"
android:background="@null"
android:hint="請輸入密碼"
android:textSize="20sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />
<Button
android:id="@+id/login"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="登陸" />
</LinearLayout>
</LinearLayout>
複製代碼
第5,17,23都設置了背景顏色,並且都是LinearLayout,這樣對於26行的textview來講,已經多了三層背景色,再加上自身內容的渲染,已經四層,確定顯示紅色,也對應了3D模型顯示的結果,咱們的作法是去掉沒有必要的背景顏色。更改後的xml文件以下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@mipmap/service_top_bg" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="12dp"
android:text="用戶名"
android:textSize="20sp" />
<EditText
android:id="@+id/user_name"
android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_marginLeft="12dp"
android:background="@null"
android:hint="請輸入用戶名"
android:textSize="20sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="12dp"
android:text="密碼"
android:textSize="20sp" />
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_marginLeft="12dp"
android:background="@null"
android:hint="請輸入密碼"
android:textSize="20sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />
<Button
android:id="@+id/login"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="登陸" />
</LinearLayout>
</LinearLayout>
複製代碼
5.效果對比
優化前:
1.根佈局的背景色謹慎設置,避免無效背景色。 2.減小布局層次,雖然佈局層次不影響GPU過分渲染,可是複雜的嵌套勢必會影響xml加載效率,也會增長像素點屢次繪製的概率。
關注下方公衆號,留言獲取源碼。
若有錯誤歡迎指出來,一塊兒學習。