1. 程式人生 > >Android開發Tips(3)

Android開發Tips(3)

gem tips hub ets tps 效果 spa cycle platform

歡迎Follow我的GitHub, 關註我的CSDN.

我會介紹關於Android的一些有趣的小知識點. 本文是第三篇, 其余第一篇, 第二篇.

技術分享


1. UIAutomatorViewer

自己主動化測試是Android測試的趨勢, 穩定\復用, 最經常使用的工具就是Espresso.
使用UIAutomatorViewer獲取資源的Id,
位置/android-sdk/tools/uiautomatorviewer, 點擊就可以使用.

技術分享


2. GitHub標簽

網址, 比方:
技術分享
技術分享


3. 有趣的改動SVG庫

地址, 載入SVG格式的圖片, 改動顏色屬性.

技術分享


4. 請求和生成的Json插件

JSONOnlineViewer, 網絡請求插件, 獲取Json數據, 位置View->JSONViewer.
GsonFormat, 依據Json自己主動生成類的插件, 在Command+N裏面.

附一張插件的截圖, 其它任意.

技術分享


5. Retrofit2+Okhttp3的Interceptor設置方式

Retrofit升級到beta3版本號, 使用了最新Okhttp3, Interceptor的設置方式發生改變.

舊版

OkHttpClient client = new OkHttpClient().Builder();

HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor();
loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BASIC);
MarvelSigningInterceptor signingInterceptor = new MarvelSigningInterceptor(
    BuildConfig.MARVEL_PUBLIC_KEY, BuildConfig.MARVEL
_PRIVATE_KEY); client.interceptors().add(signingInterceptor); client.interceptors().add(loggingInterceptor);

替換, 新版

        HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor();
        loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BASIC);

        MarvelSigningInterceptor signingInterceptor = new MarvelSigningInterceptor(
                BuildConfig.MARVEL_PUBLIC_KEY, BuildConfig.MARVEL_PRIVATE_KEY);

        OkHttpClient client = new OkHttpClient.Builder()
                .addInterceptor(signingInterceptor)
                .addInterceptor(loggingInterceptor)
                .build();

否則可能會發生: HTTP 409 Conflict, 未輸入正確的驗證方式, 私鑰錯誤.


6. okhttp-logging-interceptor輸出log信息

參考, 能夠輸出log信息, 使用, 當前版本號是3.0.1.

compile "com.squareup.okhttp3:logging-interceptor:${libs.okhttp}"

輸出參考:

D/OkHttp: <-- 200 OK http://gateway.marvel.com/v1/public/characters?

offset=0&... (1552ms, unknown-length body)


7. 透明statusbar和全屏ImageView

status bar設置成為透明顏色.

    <style name="AppTheme.NoStatusBar">
        <item name="android:windowTranslucentStatus">true</item>
    </style>

頁面的根布局是CollapsingToolbarLayout.

<android.support.design.widget.CollapsingToolbarLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:contentDescription="@null"
        android:fitsSystemWindows="true"
        android:scaleType="centerCrop"
        android:src="@drawable/christmas"/>

</android.support.design.widget.CollapsingToolbarLayout>

效果
技術分享


8. Android Studio模板

位置: File->Other Settings->Default Settings->Editor->Live Templates
熟練之後, 依據簡寫+Tab就能夠使用了, 當然也能夠自己加入.

技術分享

自己定義模板:
縮寫(Abbreviation), 描寫敘述(Description), 內容(Template text), 應用場景, 格式化.
技術分享


9. 推薦動畫效果的站點

網址, 站點裏面有非常多好玩的動畫效果, 並且都是編程實現, 方便移植, 如雪花效果.


10. ListView的ViewHolder

Android官方推薦使用RecyclerView取代ListView, 可是非常多守舊的人不想這麽做, 那麽, 也須要使用ViewHolder提升載入速度. 參考.

基本使用方法.

static class ViewHolder() {
    TextView testName;
    TextView testDesc;
}

...

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View rowView = convertView;

    // 初始化ViewHolder
    if (convertView == null) {
        LayoutInflater inflater = (LayoutInflater) parent.getContext()
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        rowView = inflater.inflate(R.layout.view_test_row, parent, false);
        ViewHolder viewHolder = new ViewHolder();
        viewHolder.testName = (TextView) rowView.findViewById(R.id.test_tv_name);
        viewHolder.testDesc = (TextView) rowView.findViewById(R.id.test_tv_desc);
        rowView.setTag(viewHolder);
    }

    // 使用ViewHolder
    ViewHolder holder = (ViewHolder) rowView.getTag();
    holder.testName.setText("Test: " + position);
    holder.testDesc.setText("This is number " + position + ". ");

    return rowView;
}

OK, that’s all! Enjoy it.

Android開發Tips(3)