1篙程、教程Markdown
在線網(wǎng)址, 動(dòng)態(tài)權(quán)限授權(quán)示例.
2乃摹、在線視頻剪切網(wǎng)站
非常不錯(cuò)的在線網(wǎng)站, 處理音頻和視頻. 參考.
3泞歉、 Android測(cè)試工具
推薦兩個(gè)常用的測(cè)試工具Espresso和Robolectric.
4丙躏、TextView的標(biāo)準(zhǔn)字體
樣式
style="@style/TextAppearance.AppCompat.Display4"
style="@style/TextAppearance.AppCompat.Display3"
style="@style/TextAppearance.AppCompat.Display2"
style="@style/TextAppearance.AppCompat.Display1"
style="@style/TextAppearance.AppCompat.Headline"
style="@style/TextAppearance.AppCompat.Title"
style="@style/TextAppearance.AppCompat.Subhead"
style="@style/TextAppearance.AppCompat.Body2"
style="@style/TextAppearance.AppCompat.Body1"
style="@style/TextAppearance.AppCompat.Caption"
style="@style/TextAppearance.AppCompat.Button"
5舶替、透明statusbar和全屏ImageView
status bar設(shè)置成為透明顏色.
<style name="AppTheme.NoStatusBar">
<item name="android:windowTranslucentStatus">true</item> </style>
頁(yè)面的根布局是CollapsingToolbarLayout
style="@style/TextAppearance.AppCompat.Button"<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>
GitHub標(biāo)簽
網(wǎng)址, 比如:
6. dp和sp的區(qū)別
dp是Android頁(yè)面常用的度量單位, sp主要用于字體度量.
在標(biāo)準(zhǔn)情況下, dp等于sp. 然而, Android系統(tǒng)允許用戶設(shè)置字體大小, sp會(huì)隨著字體的大小而改變, 放大或是縮小.
設(shè)置位置(紅米): Android -> 設(shè)置 -> 字體大小 -> 標(biāo)準(zhǔn)(默認(rèn))或大小號(hào).
7嫂拴、顯示Activity棧的Shell命令
adb shell dumpsys activity | sed -n -e '/Stack #/p' -e '/Running activities/,/Run #0/p'
8播揪、修改string的顏色
在 Android 開發(fā)中,通常會(huì)吧文本放在 strings.xml 文件中筒狠,然后再引用猪狈。
有時(shí)候,有些需求需要修改文本中的部分字的字體顏色辩恼,可以用以下方式修改:
修改原本的strings.xml:
<string name="hh_no_order"><Data><![CDATA[sorry雇庙,沒(méi)有任何訂單,<font color="#fc2a56">前往買買買</font>]]></Data></string>
代碼中的使用需要配合Html.fromHtml()灶伊,如:
mTvTip.setText(Html.fromHtml(mTips))
Android log colors
- To do so
- In toolbar menu select File|Settings
- Choose Editor|Colors & Fonts|Android Logcat
- Click on Save As… button and create new color schema
- Change all colors to ‘Holo theme colors’ (Uncheck ‘Use inherited attributes’ for every color)
Assert: #AA66CC
Debug: #33B5E5
Error: #FF4444
Info: #99CC00
Verbose: #FFFFFF
Warning: #FFBB33
移除默認(rèn)的 Window 背景
一般應(yīng)用默認(rèn)繼承的主題都會(huì)有一個(gè)默認(rèn)的 windowBackground 疆前,比如默認(rèn)的 Light 主題:
在 BaseActivity 的 onCreate() 方法中使用下面的代碼移除:
getWindow().setBackgroundDrawable(null);
// 或者
getWindow().setBackgroundDrawableResource(android.R.color.transparent);
ImageView的background和imageDrawable重疊
Android中,所有的view均可以設(shè)置background聘萨。ImageView除了能夠設(shè)置background之外竹椒,還能設(shè)置ImageDrawable。
在開發(fā)中米辐,很多時(shí)候需要顯示圖片胸完,在圖片加載出來(lái)之前通常是需要顯示一張默認(rèn)圖片的书释,很多時(shí)候會(huì)使用ImageView的background屬性來(lái)設(shè)置默認(rèn)背景圖,而imageDrawable來(lái)設(shè)置需要加載的圖片赊窥。這樣會(huì)導(dǎo)致一個(gè)問(wèn)題爆惧,當(dāng)圖片加載到頁(yè)面后,默認(rèn)背景圖被擋住了锨能,但是卻任然需要繪制检激,導(dǎo)致過(guò)渡繪制情況的發(fā)生。
copyright 年份
<string name="copyright">Copyright ? 2016-%d mrwu</string>
int year = Calendar.getInstance().get(Calendar.YEAR);
tvCopyright.setText(getString(R.string.copyright, year));
Live template
android.content.SharedPreferences sharedPreferences =getPreferences(Context.MODE_PRIVATE);
android.content.SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean(getString(R.string.$stringVal$), $spVal$);
editor.apply();
Snackbar.make($view$,“$text$”,Snackbar.LENGTH_LONG)
.setAction(“Action”, null).show();
原文:
https://medium.com/google-developer-experts/configuring-android-studio-4aa4f54f1153
http://blog.csdn.net/a740169405