. 以js為核心
2. 時間上有變化;是通過JS的定時器來實現的;
定時器的作用:在指定的時間范圍內,或者時間段之后,執行的操作;
3. 雨滴下落和水波紋效果:
###目標: 1. JS的語法基礎 2. DOM的基本操作
1.js寫在哪里?
js可以寫在html文件的任何位置但是要通過script標簽來創建js的編輯環境;
在企業項目中,通常采用的是三層分離原理,所以,我們會單獨新建一個JS文件來
編寫腳本代碼,然后通過SCRIPT標簽的SRC屬性,引入到HTML文件的頭部中:
如果是通過外鏈式,將 js文件引入到head中;則JS中必須通過window.onload事件來包含
所有的腳本
2.基本的語法規則
(1) 變量:
變量就是存儲數據用的容器;那么,語法是:
var 變量名=變量值; 變量的初始化;
var 變量名;
(2)數據類型:
數值型:Number
字符串型:必須用引號括起來;
布爾值型:只有兩值,分別是true/false;
凡是值為0/false/undefined/null的時候結果為邏輯值false,否則全為true;
undefined:未定義,表示已經分配咯存儲空間,但沒有進行初始化的變量;
mull:空,表示存儲空間都不存在;
(3)設計一個倒計時
當用戶點擊按鈕時,才開始執行倒計時
思路:
1. 新建JS文件并引入到HTML里面
2. JS腳本設計;
(1)找對象
找按鈕元素:
var but=document.getElementById("");
(2) 找事件
用戶的操作所觸發的事件或者是系統的行為:
onclick
(3)交互效果實現
定時器:setInterval()
定時器 方法有兩個常用的參數,第一個參數是定時器需要執行的操作,通
常會寫成一個函數,第二個操作是定時器的時鐘周期,通常使用的是毫秒數;
定時器需要執行的操作:
是P元素中顯示的內容在發生自減;
通過找對象的方式先找到P元素,P元素的內容是通過innerHTML屬性
來進行設置的;
p.innerHTML=value;
value -- ;
查、改、增、刪 四類基本操作
1. 查:
根據樣式CSS基本選擇器的類型來定的三種查找元素的方法;
標簽:getElementsByTagName("tagname")
此時找到的是一個數組
類名:getElementsByClassName("classname");
此時和標簽查找的結果一樣,也得到 一個數組:
ID:getElementById("IdName");
這種方式是唯一能準確的找到元素的方法;
2. 改:
(1)改具體顯示的內容:通常會使用兩個屬性:
innerHTML:修改的是能夠識別標簽的文本內容;
innerText:修改的是純文本內容;
(2)改元素的樣式:通常使用的是style屬性
例如:
p.style.color="value";
p.style.fontSize="30px";
p.style.cssText="color:purple;font-size:40px;"
3. 增:
(1) 通過createElement("tagname")方法來創建元素;注意:只能給document(文檔)創建
var parr=document.getElementsByClassName("p1");
var h1=document.createElement("h1");
parr[0].appendChild(h1)
(2) 通過appendChild()方法,將新創建的元素添加到指定的父級元素中;
var parr=document.getElementsByClassName("p1");
var img=document.createElement("img");
img.src="fa.png";
parr[0].appendChild(img)
4、刪:
通過removeChild(),來刪除某個父級元素的子元素:
通常情況下,我們在移除某個父級元素的子元素時,對父元素是有要求的;
必須遵循合法的語義---比如,在段落中不允許出現標題元素;
一般情況下我們會將父級元素定義為div(層、塊);
var btn=document.getElementById("btn"),
pArr=document.getElementsByClassName("p1"),
h1=document.getElementById("h1");
btn.onclick=function () {
var img=document.createElement("img");
img.src="fa.png";
pArr[1].appendChild(img);
pArr[0].removeChild(h1)
}
1.canvas畫布
(1)概念:
是H5中的一個標簽:特點是可以通過JS來繪制我們需要的任何形狀或者(圖形);
ps:在JS中通常當我們看到"[]"首先可以把它理解為數組,如果我們看到"{}"我們
初步認定為對象;
(2) canvas對象常用的屬性和方法:
常用的方法:
getContext("2d");
常用的屬性 :
fillStyle: 畫筆的填充顏色屬性;設置填充繪制的顏色;
strokeStyle:畫筆的筆觸顏色屬性;設置線條繪制顏色
1. 概念:
函數本質上是具有名稱、并且可以重復使用的功能代碼塊;
2. 語法:
function 函數名(參數){功能代碼塊;}
<div id="box"></div>
<p id="p1"></p>
<h1 id="h1"></h1>
<script>
// var box=document.getElementById("box"),
// p=document.getElementById("p1"),
// h1=document.getElementById("h1");
// console.log(h1);
function findEle(id) {
return document.getElementById(id);
}
var p=findEle("p1"),
h1=findEle("h1"),
box=findEle("box");
</script>
3. 帶參數的函數;
當功能需要處理是變化的,我們要考慮配置參數;
(1)形參:在函數定義時使用的參數叫形參
(2)實參:在函數調用時使用的參數叫實參
簡單的理解、形參是變量名,實參是變量值
<div id="box"></div>
<p id="p1"></p>
<h1 id="h1"></h1>
<script>
function findEle(id) {
return document.getElementById(id);
}
var p=findEle("p1"),
h1=findEle("h1"),
box=findEle("box");
box.style.cssText="width:300px;height:300px;backgroudn:skyblue;";
h1.style.cssText="width:300px;height:300px;backgroudn:skyblue;";
p.style.cssText="width:300px;height:300px;backgroudn:orange;";
box.onclick=function () {
popContent(this);
};
h1.onclick=function () {
popContent(this)
};
p.onclick=function () {
popContent(this)
};
function popContent(content) {
alert(content||"無內容呀。。");
}
</script>
4. 帶返值的函數:
使用return語句來設置函數執行結束后返回的結果,
通常情況璨們會使用一個變量來接收函數返回值;
通常情況下,return語句之后,不會再寫其他語句,因為寫咯也沒用;
<div id="box"></div>
<p id="p1"></p>
<h1 id="h1"></h1>
<script>
var box=document.getElementById("box");
box.style.cssText="width:200px;height:200px;border:1px solid #ccc";
box.onclick=function () {
// addContent(this,"這是一個div盒子");
addContent(this,addResult(23,33));
};
function addResult(num1,num2) {
var result=num1 + num2;
return result;
}
function addContent(obj,content) {
obj.innerHTML=content;
}
</script>
*******異步處理問題*********
<div id="box"></div>
<p id="p1"></p>
<h1 id="h1"></h1>
<button id="btn"></button>
<script>
var timer=null,
numArr=[1,2,3],
box=document.getElementById("box"),
btn=document.getElementById("btn"),
times=0;
box.style.cssText="font-size:40px;color:orange;font-weight:bold;";
timer=setInterval(function () {
box.innerText=numArr[Math.floor(Math.random()*3)]
},100);
btn.onclick=function () {
times ++;
if(times%2==1){
clearInterval(timer);
if(box.innerText=="2"){
alert("恭喜你中獎咯!");
}else {
alert("謝謝惠顧,要不要再來一次?")
}
btn.innerText="start";
}else {
timer=setInterval(function () {
box.innerText=numArr[Math.floor(Math.random()*3)]
},100);
btn.innerText="stop";
}
};
</script>
使用函數的方法,實現當我點擊按鈕一次,就在頁面中,添加一個div;
思路:
1. 創建一個html文件,并且在body添加一個按鈕;
2. 創建JS編輯環境
3. 在js編輯環境中,找對象(找按鈕)
4. 找事件:onclick
5. 功能實現:
創建一個函數,功能是添加一個div
6. 在按鈕的onclick事件中調用函數
<button id="btn" style="float: left">創建元素</button>
<script>
function creatBox() {
var box=document.createElement("div");
box.style.cssText="width:100px;height:100px;background:skyblue;margin:3px;float:left;";
document.body.appendChild(box);
}
var btn=document.getElementById("btn");
btn.onclick=function () {
creatBox();
}
</script>
1. 找用戶交互城要叛逆的對象;
行業中函數的命名規范:小駝峰命名法;
如何查找元素;document.getElementsByTagName();
2. 用戶的交互動作所觸發的事件;
鼠標事件:onclick/ondblclick/onwheel
鍵盤事件:onpress/onkeydown/onkeyup
窗口:onresize/onunload/onload/onscroll.......
3. 事件蟹發時,需要實現的功能;
btn.onclick=function(){}
1.在js中,事件的處理有三種級別;
(1)HTML級別;
<button id="btn" onclick="popMessage()"></button>
<script>
var btn=document.getElementById("btn");
function popMessage() {
alert("123");
}
</script>
通過html標簽的事件屬性,比如點擊事件屬性click,來調用某個函數實現對應的
功能:
弊端;
當函數的名稱發生改變時需要到HTML文件中找到調用該方法的函數并修改其方法名稱;
(2) DOM0級:
在JS中直接將某個元素的事件用匿名函數來賦值,以便實現對應的功能:
(3) DOM2級;
為了解決DOM0級的覆蓋問題,采用了DOM2級事件處理機制;
通過addEventListener()方法來解決覆蓋問題
<button id="btn"></button>
<script>
var btn=document.getElementById("btn");
btn.addEventListener("click",function () {
alert("123");
});
btn.addEventListener("click",function () {
alert("234");
})
</script>
2.事件冒泡;
從具體的元素擴散到最不具體的元素;
<div id="box">
<div id="subbox">
<button id="btn"></button>
</div>
</div>
<script>
function findEle(id) {
return document.getElementById(id)
}
var box=findEle("box"),
subbox=findEle("subbox"),
btn=findEle("btn");
btn.onclick=function(){
alert(123)
};
subbox.onclick=function () {
alert(234)
};
box.onclick=function () {
alert(345)
}
</script>
阻止事件冒泡: stopPropagation
1.找到畫布元素;
2.設置畫布的繪畫功能:getContext("2d");
3.設置畫筆的類型:fillStyle/strokeStyle;
4.創建雨滴對象:
采用面對對象的方法來創建雨滴對象;
函數構造器:prototype原型鏈屬性;
初始化方法:
設置雨滴的相關屬性
繪制方法:
根據下降的情況,來確定究竟繪制的是雨滴還是波紋;
5.實例化雨滴
6.雨滴的移動及其變化;
博主為咯學編程:父母不同意學編程,現已斷絕關系;戀人不同意學編程,現已分手;親戚不同意學編程,現已斷絕來往;老板不同意學編程,現已失業三十年。。。。。。如果此博文有幫到你歡迎打賞,金額不限。。。
么是耳機參數?耳機參數能為我們帶來什么參考意義呢?對于所有選購耳機朋友而言,了解一款耳機的途徑除了現場試聽,就只有通過瀏覽耳機參數來了解耳機性能了。本文將以剛發布的主動降噪耳機Marshall Monitor II A.N.C.為例,向大家介紹各參數分別代表著什么,他們又是如何影響你的聽覺感受的。
耳機單元的參數解析
單元是耳機的直接發聲部位,因此我們就從它開始說起。大家可以將單元理解為一個圓形水池,它的直徑越大,它能泛起的水波紋范圍就越寬廣(指理論上對于聲音的保真度越高,聲音表現也就就更加自然)。Marshall Monitor II A.N.C.采用40mm直徑的動圈單元設計,為了避免影響降噪性能,頭戴式主動降噪耳機單元尺寸一般都在40mm左右,如果同尺寸想要獲得更好的音質,那么就建議大家選購對音樂的調音更有實力的、具有深厚聲學實力的品牌。
除了振膜大小,耳機單元的參數中還有阻抗、靈敏度和頻響范圍,在水池中,耳機的阻抗就好比用手制造水波紋的時受到的阻力,阻力越大、越難產生波紋,也就意味著需要更多的力量(指輸入電壓);耳機的靈敏度越高代表當你用手造成同一間隔的波紋(指聲音頻率)時,這個波紋的強度越高(波紋越強代表音量越大)。在此提醒大家,不少耳機品牌阻抗、靈敏度為噱頭來推銷耳機的音質,實際上這兩項單數并無法直接正面決定耳機聲音的好壞。
一般來說,普通的耳機廠商只會提供1kHz聲音頻率的靈敏度。然而我們會用耳機來聽聲音顯然并不止1kHz,因此單一頻率的聲音靈敏度對耳機音質是沒有參考意義的。像Marshall Monitor II A.N.C.耳機給出的表格則是給出了這款耳機從20-20kHz的全頻靈敏度參數——跨度如此大的頻率范圍,可以說是相當良心。
通過此參數,我們可以看到Marshall Monitor II A.N.C.的全頻是較為均衡、高頻與低頻性能經過偏向的加強。這能使得耳機的聲音能夠更加精準地響應高、低頻聲音的變換——簡單來說,就是能夠使耳機能夠帶來更震撼的現場感,更加適合聆聽流行、搖滾類節奏感較強、對現場感要求較高的音樂。
主動降噪原理解析
主動降噪耳機的工作是雙線并行的,除了正常的放音,耳機還需要通過麥克風收集環境中的噪聲,然后以毒攻毒地放出噪聲的反相聲波將其抵消。因此當我們在談論耳機的降噪能力時,談論的主要是耳機中主動降噪芯片的性能——芯片性能越好,它模仿出的波紋越接近噪聲的真實聲波,也就能精準地抵消它。而降噪耳機的另一技術相關因素就是用來收集噪聲的麥克風。
關于主動降噪是否會影響音質
降噪耳機帶來的安靜環境絕對是有益于音質的,因此一般情況下大家大可不必考慮主動降噪對于耳機音質的影響。雖然在安靜環境中降噪開關的聽感差異證明了主動降噪對音質存在影響,但隨著主動降噪技術的更新發展,全新的技術已經很好的解決了這方面的問題。
關于續航
在耳機單元和降噪系統之后,對用戶影響最大也是非常重要的一個部件就是電池了。有些耳機在續航時長上只標注了關閉降噪的續航,而沒有持續開啟降噪的續航時間,這種行為一般只能代表其開啟降噪后的續航時間拿不出手,因此也沒有什么實際使用的參考意義。
在電池參數我們可以看到,Marshall Monitor II A.N.C.開啟主動降噪時,能夠為用戶提供30小時不間斷的持久續航(市面上其它降噪耳機的續航能力最高水平僅為20小時左右)。在關閉降噪功能的情況下,這款耳機的續航能力更可長達45小時。此外,Monitor II A.N.C.支持快速充電,只需充電15分鐘就可無線播放長達5小時,如果拆成時間來算的話,這款耳機只需充電1分鐘即可獲得20分鐘的使用時間。對于日常通勤使用的朋友來說,長續航與快充功能亮點可能并不是那么突出;對于需要長期出差、充電時間有限的朋友來說,考慮長續航和快充功能的產品還是非常有必要的。
寫在最后:
讀到這里,相信大家對于耳機參數已經有了大概的了解。對于選購耳機來說,雖然每款耳機的發聲原理都相同,但由于不同的參數差異,最后呈現的效果是千差萬別的。事實上,參數只能夠代表一款耳機的基本信息,就好比你知道一個人的身高體重一樣,知道了這些你最多能在人群中認出他,卻未必能夠完全了解這個人的內在如何以及接下來的長期相處是否和你適配。如果大家想要完整的了解一款耳機的性能,歡迎大家參考中關村在線首頁搜索你喜歡的產品評測,比如本文舉例的Marshall Monitor II A.N.C.的評測鏈接是http://dcdv.zol.com.cn/740/7408836.html,歡迎大家的關注和參考。
(7410619)
https://github.com/Tapadoo/Alerter ★2528 - 克服Toast和Snackbar的限制
https://github.com/wenmingvs/NotifyUtil ★920 - 高仿淘寶微信等熱門APP通知視圖
https://github.com/halysongoncalves/Pugnotification ★683 - 通過一行代碼實現通知功能
https://github.com/hss01248/NotifyUtil ★119 - notification工具類
https://github.com/shaileshmamgain5/Carousel-Notification ★73 - 輪播框通知
https://github.com/linglongxin24/NotificationUtil ★37 - 全新的Android通知欄
https://github.com/stfalcon-studio/ChatKit ★906 - 簡化UI開發
https://github.com/himanshu-soni/ChatMessageView ★552 - 快速創建聊天信息視圖
https://github.com/bassaer/ChatMessageView ★249 - Android聊天UI視圖
https://github.com/Maxi-Mao/ChatDemo ★109 - 實現聊天界面
https://github.com/sfsheng0322/StickyHeaderListView ★1816 - 基于實際需求做出的靈活可定制的UI功能
https://github.com/githubwing/ZoomHeader ★1717 - 模仿餓了么詳情頁的例子
https://github.com/kmshack/Android-ParallaxHeaderViewPager ★1298 - 帶標題頭的左右滑動
https://github.com/ShamylZakariya/StickyHeaders ★741 - 安卓RecyclerView的適配器和布局管理器
https://github.com/drakeet/RecyclerViewWithHeaderNewPractice ★533 - 結合HeaderView的### RecyclerView新實現
https://github.com/ta893115871/StickyNavLayout ★235 - 懸浮控件
https://github.com/songhanghang/Smart-HeaderFooter-RecyclerView ★198 - 將Recyclerview添加HeaderView和FooterView
https://github.com/PaoloRotolo/AppIntro ★6053 - 制作一個很酷的app介紹頁
https://github.com/amlcurran/ShowcaseView ★4660 - 向用戶突出app的特定部分
https://github.com/Nightonke/WoWoViewPager ★1881 - 優化App介紹/引導頁面
https://github.com/TangoAgency/material-intro-screen ★1807 - MD風格的介紹頁面
https://github.com/binIoter/GuideView ★1463 - 創建遮罩式導航頁
https://github.com/eoinfogarty/Onboarding ★1390 - 以一種漂亮的方式向用戶介紹應用
https://github.com/Ramotion/paper-onboarding-android ★1309 - MD風格的onboarding
https://github.com/riggaroo/MaterialIntroTutorial ★753 - MD風格介紹導航
https://github.com/faruktoptas/FancyShowCaseView ★581 - 易于使用的自定義顯示案例視圖
https://github.com/codemybrainsout/ahoy-onboarding ★505 - 可自定義背景的引導頁面
https://github.com/jaydenxiao2016/HighLightGuideView ★351 - 用于 app 新功能高亮引導的庫
https://github.com/ronaldsmartin/Material-ViewPagerIndicator ★316 - 超級簡單的頁面指示器
https://github.com/armcha/Vertical-Intro ★238 - 在你的應用程序中整合material vertical
https://github.com/yilylong/UserGuideView ★198 - 用戶指引view
https://github.com/Vexigon/Material-Onboarding ★172 - 輕松實現引導圖
https://github.com/guangzq/StepDialog ★118 - ofo應用首次注冊時的步驟控件
https://github.com/ihsanbal/SlidingIntoView ★61 - 簡單的滑動介紹視圖
https://github.com/nostra13/Android-Universal-Image-Loader ★15152 - 異步圖像加載程序
https://github.com/bumptech/glide ★15006 - 媒體管理和圖片加載框架
https://github.com/square/picasso ★13268 - 安卓圖片緩存庫
https://github.com/facebook/fresco ★12543 - 在Android應用中顯示圖片
https://github.com/chrisbanes/PhotoView ★9843 - 簡單可用的放大安卓ImageView實現
https://github.com/hdodenhof/CircleImageView ★6779 - 圓形介紹頭像
https://github.com/Yalantis/uCrop ★4983 - 極限且靈活的圖像裁剪體驗
https://github.com/jdamcd/android-crop ★3506 - 簡單的圖片裁剪功能的Android庫項目
https://github.com/wasabeef/glide-transformations ★3492 - 圖像轉換類庫
https://github.com/crazycodeboy/TakePhoto ★2596 - Android設備上獲取裁剪壓縮圖片
https://github.com/lovetuzitong/MultiImageSelector ★2263 - 仿微信實現多圖選擇
https://github.com/ArthurHub/Android-Image-Cropper ★2223 - Android圖片裁剪庫
https://github.com/zhihu/Matisse ★1850 - Android本地圖像選擇器
https://github.com/donglua/PhotoPicker ★1787 - 仿Wechat圖片選擇器
https://github.com/flavioarfaria/KenBurnsView ★1697 - 身臨其境的動畫拖拽
https://github.com/Bilibili/boxing ★1668 - 基于MVP模式的Android多媒體選擇器
https://github.com/lyft/scissors ★1640 - Android圖片裁剪庫
https://github.com/Piasy/BigImageViewer ★1602 - 支持平移和縮放的大圖像縮放器
https://github.com/Zomato/AndroidPhotoFilters ★1598 - 快速強大靈活的圖片處理器
https://github.com/IsseiAoki/SimpleCropView ★1591 - Android圖片裁剪庫
https://github.com/sephiroth74/ImageViewZoom ★1470 - 支持超大圖片流暢縮放
https://github.com/jeasonlzy/ImagePicker ★1433 - Android仿微信UI自定義相冊
https://github.com/LuckSiege/PictureSelector ★1209 - 多圖選擇上傳
https://github.com/bm-x/PhotoView ★1201 - 圖片瀏覽縮放控件
https://github.com/wingjay/BlurImageView ★1059 - 逐步加載圖像
https://github.com/steelkiwi/cropiwa ★1033 - 實現圖片剪裁的多配置部件
https://github.com/TangXiaoLv/TelegramGallery ★998 - 快速高效低耗相冊選擇器
https://github.com/FinalTeam/RxGalleryFinal ★982 - android圖片/視頻文件選擇器
https://github.com/mrwonderman/android-square-progressbar ★957 - 圍繞圖片的進度條
https://github.com/jkwiecien/EasyImage ★887 - 從gallery,相機或者文件中獲取圖片
https://github.com/Sunzxyong/Tiny ★849 - 圖像壓縮框架
https://github.com/boycy815/PinchImageView ★842 - 安卓圖片手勢控件
https://github.com/shaohui10086/AdvancedLuban ★817 - 方便簡約的 Android 圖片壓縮工具庫
https://github.com/jarlen/PhotoEditDemo ★802 - 圖片處理sdk
https://github.com/wujingchao/SimpleTagImageView ★800 - 安卓中帶有標簽的ImageView
https://github.com/jeasonlzy/NineGridView ★791 - 展示圖片的九宮格控件
https://github.com/yanzhenjie/album ★777 - Android輕量級相冊
https://github.com/bingoogolapple/BGAPhotoPicker-Android ★726 - Android圖片選擇
https://github.com/chengdazhi/StyleImageView ★717 - 圖片相關視圖的風格添加及亮度對比度設置
https://github.com/coomar2841/image-chooser-library ★656 - 以很少的代碼捕獲圖片/視頻
https://github.com/martin90s/ImagePicker ★651 - 圖片選擇控件
https://github.com/siwangqishiq/ImageEditor-Android ★646 - 編輯圖片
https://github.com/imablanco/Zoomy ★634 - 縮放Android庫
https://github.com/cesards/CropImageView ★586 - 支持不同類型裁剪的ImageView
https://github.com/lawloretienne/ImageGallery ★549 - 用于放置圖像數組的gallery
https://github.com/smuyyh/ImageSelector ★500 - Android圖片選擇器
https://github.com/hpfs0/DragScaleCircleView ★477 - 能夠拖拽和縮放及裁剪圖片的環形窗口
https://github.com/wqandroid/wqgallery ★383 - 微信樣式相冊選擇器
https://github.com/Carbs0126/AvatarImageView ★373 - 電話本聯系人頭像
https://github.com/MartinRGB/RapidInterpolator ★368 - 動態調整interpolator的Java庫
https://github.com/andremion/Louvre ★355 - 自定義圖片選擇器
https://github.com/NodensN/MediaPickerInstagram ★344 - 仿Instagram的MediaPicker
https://github.com/liuguangqiang/IPicker ★300 - Material Design 風格的圖片選擇器
https://github.com/Hitomis/TransferImage ★292 - 仿qq 點擊縮略圖后預覽高清圖
https://github.com/yasharpm/InstaCropper ★291 - 仿Instagram圖片裁剪
https://github.com/jeanboydev/Android-BitherCompress ★263 - Android圖片壓縮目前最優解決方案
https://github.com/imuhao/RxPicker ★261 - 基于RxJava的Android圖片選擇器.
https://github.com/sangcomz/FishBun ★261 - Android圖片選擇器
https://github.com/Werb/PickPhotoSample ★256 - 幫助你選擇圖片的庫
https://github.com/xyzxqs/XLowPoly ★235 - low poly圖片的安卓實現
https://github.com/lijunguan/AlbumSelector ★222 - 圖片選擇庫
https://github.com/fengyongge/imagepickerdemo ★206 - 圖片選擇器
https://github.com/newtonker/JigsawDemo ★203 - Android的拼圖Demo
https://github.com/dreamlivemeng/HotImg ★199 - 圖片不規則區域點擊事件處理
https://github.com/w4lle/PullDownView ★196 - 下拉展示大圖
https://github.com/YancyYe/GalleryPick ★181 - Android 自定義相冊
https://github.com/lopei/collageview ★177 - 創建簡單照片拼貼
https://github.com/ekimual/croperino ★146 - 簡單的圖像裁剪工具
https://github.com/Jhuster/ImageCropper ★143 - 圖片裁剪庫
https://github.com/HomHomLin/FrescoImageView ★140 - Android平臺的圖像控件
https://github.com/laomengzhu/MutiPhotoChoser ★139 - 支持多選的圖片選擇器
https://github.com/CarGuo/FrescoUtils ★133 - 圖片處理
https://github.com/esafirm/android-image-picker ★99 - 選擇圖像的簡單的庫
https://github.com/soulrelay/ImageLoaderUtil ★89 - ImageLoaderUtil實現的圖集功能
https://github.com/nshmura/SnappyImageViewer ★79 - 安卓圖片視圖
https://github.com/hss01248/PicCrop ★62 - 對ucrop的封裝工具類
https://github.com/okaybroda/ImageZoom ★50 - 仿Instagram的視圖縮放功能
https://github.com/Tofira/ImagePickerWithCrop ★47 - 指定選擇圖片的庫
https://github.com/vansikrishna/Multimager ★46 - 多圖片選擇器和多圖片捕獲
https://github.com/Mr-wangyong/ImageFrame ★41 - 高效省內存的播放序列幀控件
https://github.com/Idtk/IKNinePhotoView ★40 - 開源的Android九宮格控件
https://github.com/GitLqr/LQRImagePicker ★37 - 完全仿微信的圖片選擇
https://github.com/huzhenjie/ImageSelector ★32 - 支持多圖選擇和圖片預覽的圖片選擇器
https://github.com/AlexZhuo/AlxPicassoProgress ★25 - 圖片下載進度實時顯示
https://github.com/bingoogolapple/BGABadgeView-Android ★1622 - Android 徽章控件
https://github.com/qstumn/BadgeView ★1239 - 自由定制的BadgeView
https://github.com/mikepenz/Android-ActionItemBadge ★1079 - 為ActionItem添加標識
https://github.com/matrixxun/MaterialBadgeTextView ★859 - 展示新的信息標識和新的特色標識
https://github.com/volders/Badger ★686 - 添加徽章
https://github.com/nekocode/Badge ★544 - 一系列徽章圖片
https://github.com/AlexLiuSheng/BadgeView ★457 - 基于Android的BadeView
https://github.com/czy1121/badgebutton ★333 - 帶有徽標數字,小紅點)的按鈕
https://github.com/nex3z/NotificationBadge ★81 - 帶有動畫的通知標記
https://github.com/hcs-xph/BadgeRadioButton ★25 - 仿QQ底部Tab切換RadioButton
https://github.com/chendongde310/SuperBadge ★19 - 消息紅點計數解決方案
https://github.com/DreaminginCodeZH/MaterialRatingBar ★755 - 性能更好的MD風格的RatingBar
https://github.com/FlyingPumba/SimpleRatingBar ★607 - 簡單但功能強大的RatingBar
https://github.com/xiaopansky/SpiderWebScoreView ★567 - 蛛網評分控件
https://github.com/sujithkanna/SmileyRating ★475 - Android簡單的評級欄
https://github.com/xiprox/SimpleRatingView ★167 - Android的評價切換
https://github.com/AllenCoder/AndroidCustomView ★123 - 簡單的投票排名對比圖
https://github.com/iamhabib/rating-request ★24 - 簡單的Android對話框
https://github.com/ksoichiro/Android-ObservableScrollView ★7427 - 觀察滾動事件和滾動視圖的Android庫
https://github.com/Q42/AndroidScrollingImageView ★1184 - 安卓視差動畫效果
https://github.com/noties/Scrollable ★859 - 封裝實現滾動條的滾動邏輯
https://github.com/satorufujiwara/material-scrolling ★577 - MD風格的滾動效果安卓庫
https://github.com/turing-tech/MaterialScrollBar ★562 - 為MD5.1之前的版本帶來MD5.1的滾動條
https://github.com/yingLanNull/ScrollLayout ★196 - 場景抽屜拖拽效果
https://github.com/LuckyJayce/HVScrollView ★42 - 配置水平和垂直滾動的HVScrollView
https://github.com/vipulasri/Timeline-View ★1115 - 時間線視圖庫
https://github.com/alorma/TimelineView ★881 - 在應用程序添加時間軸的安卓視圖
https://github.com/qapqap/TimelineView ★399 - Android自定義時間線視圖
https://github.com/razerdp/UnderLineLinearLayout ★259 - 一個簡單的時間軸實現
https://github.com/vienan/TimeLine ★239 - 安卓時間軸
https://github.com/bmelnychuk/AndroidTreeView ★1618 - 安卓的目錄視圖
https://github.com/TellH/RecyclerTreeView ★150 - 安卓的TreeView實現
https://github.com/MiguelCatalan/MaterialSearchView ★2062 - 以MD風格實現SearchView
https://github.com/arimorty/floatingsearchview ★1949 - 帶有搜索建議的浮動搜索欄
https://github.com/android-cjj/JJSearchViewAnim ★1932 - 炫酷的SearchView搜索動畫庫
https://github.com/lapism/SearchView ★1499 - 類似Play Store的SearchView
https://github.com/renaudcerrato/FloatingSearchView ★1206 - 浮動的搜索視圖實現
https://github.com/mancj/MaterialSearchBar ★962 - 安卓MD風格搜索欄
https://github.com/sahildave/Search-View-Layout ★883 - Lollipop+ Dialer和Google Maps的實現
https://github.com/Mauker1/MaterialSearchView ★720 - 基于MD風格的Android搜索視圖
https://github.com/alexstyl/Material-SearchTransition ★316 - 展示如何過渡到搜索的示例項目
https://github.com/cyrilmottier/QueryHighlighter ★244 - 在文本中突出搜索字詞
https://github.com/michaelprimez/searchablespinner ★87 - 搜索器
https://github.com/claudiodegio/MsvSearch ★87 - Material Design風格搜索視圖
https://github.com/wenwenwen888/SearchDialog ★73 - 仿bilibili搜索框效果
https://github.com/onlynight/LSearchView ★29 - Android L設計搜索視圖
https://github.com/BelooS/ChipsLayoutManager ★1607 - 自定義RecyclerView布局管理器
https://github.com/nex3z/FlowLayout ★886 - 讓子視圖自動浮動到下一行
https://github.com/wujingchao/SimpleTagImageView ★800 - 安卓中帶有標簽的ImageView
https://github.com/whilu/AndroidTagView ★766 - Android TagView庫
https://github.com/robertlevonyan/materialChipView ★664 - MD風格的Chip視圖
https://github.com/DavidPizarro/AutoLabelUI ★587 - 將標簽并排放置的Android庫
https://github.com/kaedea/android-tagview ★576 - 云標簽控件
https://github.com/Frank-Zhu/TriangleRectangleLabelView ★441 - 標簽視圖
https://github.com/shellljx/TagViewGroup ★404 - Android 仿小紅書圖片標簽
https://github.com/wenhuaijun/EasyTagDragView ★211 - 仿網易新聞app下拉標簽選擇菜單
https://github.com/yilylong/ChannelTagView ★48 - 一個頻道管理view
https://github.com/paulyung541/LaybelLayout ★22 - 標簽布局
https://github.com/PingerOne/FlowLayoutDemo ★19 - 自定義View實現流式布局
https://github.com/hanks-zyh/HTextView ★3017 - 支持自定義字體的TextView動畫效果
https://github.com/grantland/android-autofittextview ★2678 - 自動改變文字大小完美適應邊界
https://github.com/robinhood/ticker ★2405 - 顯示滾動文本
https://github.com/Manabu-GT/ExpandableTextView ★2190 - 展開/折疊TextView
https://github.com/bluejamesbond/TextJustify-Android ★1458 - 文本處理庫
https://github.com/zzhoujay/RichText ★1357 - Android富文本解析器
https://github.com/HeZaiJin/SlantedTextView ★1215 - 傾斜的TextView
https://github.com/lygttpod/SuperTextView ★1163 - 功能強大的TextView
https://github.com/klinker24/Android-TextView-LinkBuilder ★1130 - 創建可點擊的鏈接
https://github.com/facebookincubator/TextLayoutBuilder ★1108 - Facebook出品的在Android中輕松實現文字布局
https://github.com/borjabravo10/ReadMoreTextView ★1035 - 裝飾文本的自定義TextView
https://github.com/splitwise/TokenAutoComplete ★962 - 安卓Gmail風格的MultiAutoCompleteTextView
https://github.com/SufficientlySecure/html-textview ★845 - 擴展的安卓TextView組件
https://github.com/armcha/AutoLinkTextView ★820 - 自動檢測并處理點擊事件
https://github.com/rosenpin/FadingTextView ★810 - 自動改變其內容的TextView
https://github.com/johnkil/Android-RobotoTextView ★757 - TextView及其直接間接子類的實現
https://github.com/chenBingX/SuperTextView ★731 - 提高構建項目的效率
https://github.com/AndroidDeveloperLB/AutoFitTextView ★657 - 自動適應字體和行計數的TextView
https://github.com/quiqueqs/BabushkaText ★654 - 通過Spannables設置文本樣式
https://github.com/UFreedom/FloatingText ★621 - 執行漂浮效果動畫的控件
https://github.com/shts/TriangleLabelView ★583 - 顯示三角視圖
https://github.com/ufo22940268/android-justifiedtextview ★569 - 基于原生TextView實現合理的textview
https://github.com/lawloretienne/Trestle ★540 - 在TextView上橋接span
https://github.com/klinker41/android-chips ★524 - 基于Google的內部chip庫的簡易庫
https://github.com/Chen-Sir/ExpandableTextView ★481 - 展開折疊TextView
https://github.com/zzhoujay/Markdown ★466 - Android原生Markdown解析器
https://github.com/jrummyapps/html-builder ★425 - 為Android TextView建立有效的HTML
https://github.com/jaychang0917/SimpleText ★417 - 簡化spannable字符串的創建
https://github.com/fourlastor/dante ★412 - 文本解析器
https://github.com/yanbober/AvatarLabelView ★411 - 可配置的迷你版輕量級 Label 輔助類
https://github.com/czy1121/cornerlabelview ★390 - 視圖角標
https://github.com/nntuyen/text-decorator ★364 - 輕松裝飾TextView
https://github.com/Bakumon/NumberAnimTextView ★356 - 數字增加動畫的 TextView
https://github.com/wangshaolei/UnderLineLinkTextView ★327 - 使關鍵詞帶有可點擊的下劃線TextView
https://github.com/androidessence/PinchZoomTextView ★269 - 用手勢縮放字體大小
https://github.com/limedroid/XRichText ★262 - 顯示Html富文本的TextView
https://github.com/Saketme/Better-Link-Movement-Method ★224 - 在TextView中處理RUL
https://github.com/zhonghanwen/ColorTextView ★211 - 用顏色標記一些短語
https://github.com/daquexian/FlexibleRichTextView ★191 - 自行定義大部分標簽
https://github.com/burgessjp/GetWordTextView ★165 - 通過點擊獲得詞語
https://github.com/xbroak/CharCountTextView ★114 - 仿Twitter剩余長度計數器
https://github.com/limedroid/TagEditText ★112 - 顯示類似微博中的活動標簽
https://github.com/AndroidMsky/RandomTextView ★110 - 滾動顯示TextView的數字
https://github.com/CarGuo/RickText ★82 - 類似微博的編輯框
https://github.com/hootsuite/nachos ★53 - 輸入文本并創建MD風格的chip
https://github.com/Morxander/Zaman ★53 - 將timestamp轉化為時間String
https://github.com/yombunker/SpanEZ ★39 - 從Spannable API完成提取
https://github.com/ithedan/TextViewDrawable ★33 - 仿大眾點評的購買須知
https://github.com/githubwing/RichTextView ★32 - 富文本textview
https://github.com/loonggg/TextViewSpanLink ★29 - TextView上展示超鏈接
https://github.com/zrq1060/SpanBuilder ★18 - TextView可以生成的span樣式
https://github.com/rengwuxian/MaterialEditText ★4087 - MD風格的EditText
https://github.com/vekexasia/android-edittext-validator ★1224 - 為edittext帶來數據有效性工具
https://github.com/florent37/MaterialTextField ★997 - 與眾不同的漂亮的浮動可編輯文本框
https://github.com/bufferapp/BufferTextInputLayout ★785 - 簡單的TextImputLayout定制化服務
https://github.com/xujinyang/BiuEditText ★594 - 一個有趣的EditText
https://github.com/luckyandyzhang/MentionEditText ★344 - 為提及的字符串添加一些有用的功能特色
https://github.com/qinci/AndroidEdit ★325 - EditText的撤銷和恢復撤銷操作
https://github.com/andyxialm/TyperEditText ★306 - 打字機效果
https://github.com/wangshaolei/AutoFillEmailEditText ★244 - 自動對EditText添加自定義email
https://github.com/FTandJYQ/AnFQNumEditText ★243 - 自定義EditText實現右下角計數控件
https://github.com/hanks-zyh/LineHeightEditText ★134 - 修復文本編輯行高和光標效果
https://github.com/Morxander/EditCard ★76 - 輸入信用卡號碼的自定義EditText
https://github.com/chaychan/PowerfulViewLibrary ★73 - 輸入框功能
https://github.com/wajahatkarim3/EasyMoney-Widgets ★30 - 支持貨幣顯示的部件
https://github.com/aishang5wpj/RichEditText ★21 - 仿微博富文本編輯框
https://github.com/umano/AndroidSlidingUpPanel ★6150 - 通過向上拖動添加額外面板
https://github.com/mancj/SlideUp-Android ★1220 - 對任何視圖添加邊側效果
https://github.com/lawloretienne/DiscreteSlider ★537 - 讓用戶在指定的刻度線上選擇一個值的滑塊
https://github.com/MAXDeliveryNG/slideview ★472 - 簡單獨特的Android滑動按鈕
https://github.com/HomHomLin/SlidingLayout ★331 - 安卓平臺View控件
https://github.com/dalong982242260/SlidingBall ★187 - 仿QQ身邊的人的效果
https://github.com/ragunathjawahar/android-saripaar ★2233 - 基于規則的AndroidUI輸入驗證庫
https://github.com/google/hover ★1978 - Android浮動菜單實現
https://github.com/fanrunqi/MaterialLogin ★1485 - MD風格的登錄效果
https://github.com/Jungerr/GridPasswordView ★1237 - Android密碼視圖
https://github.com/pchmn/MaterialChipsInput ★1097 - MD風格chip組件的實現
https://github.com/AzimoLabs/AndroidKeyboardWatcher ★759 - Android可開閉輸入鍵盤
https://github.com/thyrlian/AwesomeValidation ★736 - 實現對Android的驗證
https://github.com/shem8/MaterialLogin ★688 - MD風格的登錄注冊視圖
https://github.com/lisawray/passwordview ★661 - Android密碼視圖
https://github.com/glomadrian/material-code-input ★656 - MD樣式的編碼輸入
https://github.com/Rogero0o/PasswordLoadingView ★532 - 當完成密碼時顯示一個動畫
https://github.com/irfaan008/OnePageSigninSignup ★424 - 單頁面實現注冊登錄
https://github.com/mcxtzhang/SwipeCaptcha ★386 - Android 平臺的滑動驗證碼
https://github.com/Ilhasoft/data-binding-validator ★214 - 使驗證字段變得簡單而快速
https://github.com/Hamadakram/Ratifier ★103 - Android表單驗證庫
https://github.com/sgaikar1/ValidationUtilsLibrary ★91 - 實現表單驗證
https://github.com/Kaopiz/android-segmented-control ★1310 - Android自定義視圖
https://github.com/7heaven/SHSegmentControl ★446 - 一個簡單的SegmentControl部件
https://github.com/czy1121/segmentedview ★31 - ios 風格的分段控件
https://github.com/danledian/SegmentedControl ★16 - 分段選擇控件
https://github.com/saiwu-bigkoo/Android-ConvenientBanner ★2548 - 通用的廣告欄控件
https://github.com/youth5201314/banner ★2221 - Android廣告圖片輪播控件
https://github.com/bingoogolapple/BGABanner-Android ★1654 - 引導界面滑動導航
https://github.com/sayyam/carouselview ★575 - Android輪播框庫
https://github.com/hejunlin2013/SuperIndicator ★386 - 首頁推薦位輪播圖
https://github.com/xiaohaibin/XBanner ★345 - 自定義圖片無限輪播的控件
https://github.com/dongjunkun/BannerLayout ★268 - 簡潔實用的android廣告欄
https://github.com/czy1121/bannerview ★165 - 橫幅廣告圖片輪播控件
https://github.com/loonggg/RecyclerViewBanner ★155 - 使用RecyclerView做的輪播圖
https://github.com/dalong982242260/AndroidCarrouselLayout ★105 - 安卓輪播框布局
https://github.com/saeedsh92/Banner-Slider ★61 - 在Android應用中便于使用的精致滑塊
https://github.com/rtugeek/MaterialBanner ★56 - MD風格的banner
https://github.com/IntruderShanky/Flare ★56 - 簡單的循環指示器實現
https://github.com/13456961183/RecyclerBanner ★26 - 使用RecyclerView 實現的輪播圖
https://github.com/genius158/simplebanner ★16 - 基于adapter的輪播圖實現
https://github.com/gotev/android-upload-service ★1159 - 輕松實現后臺上傳文件
https://github.com/arpitkh96/AmazeFileManager ★1122 - 好用的文件管理源代碼
https://github.com/DroidNinja/Android-FilePicker ★1060 - 靈活選擇圖片和視頻的文件選擇器
https://github.com/nbsp-team/MaterialFilePicker ★591 - MD風格文件選擇器庫
https://github.com/smanikandan14/ThinDownloadManager ★590 - Android下載文件庫
https://github.com/spacecowboy/NoNonsense-FilePicker ★521 - 文件選擇器庫
https://github.com/lidong1665/AndroidPDF ★52 - PDF文件打開方法
https://github.com/stephentuso/welcome-android ★1274 - 安卓歡迎屏效果
https://github.com/JeasonWong/Particle ★1026 - 酷炫動畫效果
https://github.com/githubwing/WowSplash ★705 - 鐵塔融云閃屏頁
https://github.com/ViksaaSkool/AwesomeSplash ★564 - 令人叫絕的可自定義的飛濺效果屏幕
https://github.com/linglongxin24/WelcomeVideoPager ★83 - Android酷炫歡迎頁播放視頻
https://github.com/navasmdc/MaterialDesignLibrary ★8104 - Material Design 安卓庫
https://github.com/traex/RippleEffect ★4159 - MD風格的點擊漣漪效果實現
https://github.com/balysv/material-ripple ★1786 - Android視圖的紋波效果封裝
https://github.com/ZieIony/Carbon ★1606 - Android的MD風格實現案例
https://github.com/jfoenixadmin/JFoenix ★1224 - 使用Java組件實現Google的MD風格
https://github.com/AoDevBlue/MaterialValues ★706 - 將Material Design指南中的所有值在資源中定義
https://github.com/ozodrukh/RippleDrawable ★492 - Android效果端口
https://github.com/lurbas/MaterialMasterDetail ★234 - 實現Master及Detail模式
https://github.com/liuguangqiang/RippleLayout ★203 - 實現波紋效果的布局
https://github.com/takahirom/material-element ★157 - MD風格動畫示例APP
https://github.com/Cutta/MaterialTransitionAnimation ★97 - MD風格動畫實踐
https://github.com/roughike/BottomBar ★6080 - 自定義視圖組件
https://github.com/DevLight-Mobile-Agency/NavigationTabBar ★2946 - 帶有色彩交互的導航標簽欄
https://github.com/aurelhubert/ahbottomnavigation ★1973 - 實現MD風格的按鈕導航組件庫
https://github.com/Ashok-Varma/BottomNavigation ★1904 - 從GooglePlay商店獲取示例apk
https://github.com/armcha/Space-Navigation-View ★1245 - 仿GoogleSpaces的導航完全整合
https://github.com/sephiroth74/Material-BottomNavigation ★869 - 輕量級底部導航庫組件
https://github.com/armcha/LuseenBottomNavigation ★828 - 底部導航視圖
https://github.com/yingLanNull/AlphaTabsIndicator ★393 - 高仿微信底部狀態欄的輕量級庫
https://github.com/peng8350/JPTabBar ★393 - 安卓標簽欄
https://github.com/ittianyu/BottomNavigationViewEx ★333 - 增強BottomNavigationView的安卓庫
https://github.com/RoyWallace/BottomNavigationBar ★249 - MD更新的BottomNavigationbar的開源實現
https://github.com/adib2149/BottomNavBar ★127 - 輕松添加四個選項卡的導航欄
https://github.com/GrenderG/Toasty ★2500 - 通常的Toast
https://github.com/JohnPersano/SuperToasts ★2248 - 增強并創建立Android Toast庫
https://github.com/yadav-rahul/TastyToast ★1438 - 精致的原生安卓toast
https://github.com/code-mc/loadtoast ★1234 - Android可自定義toast
https://github.com/Muddz/StyleableToast ★1050 - 標準安卓Toast
https://github.com/HuanHaiLiuXin/SweetTips ★58 - 快意靈動的提示庫
https://github.com/anderson9/LovelyToast ★35 - 使你的Toast變得靈活而生動
https://github.com/HotBitmapGG/CreditSesameRingView ★908 - 仿Ali芝麻信用新老環形界面
https://github.com/sharish/CreditCardView ★702 - 支付系統信用卡和簽賬卡視圖
https://github.com/vinaygaba/CreditCardView ★583 - 仿真信用卡UI安卓庫
https://github.com/michelelacorte/SwipeableCard ★571 - 仿StreetView磁卡實現
https://github.com/dbachelder/CreditCardEntry ★454 - 進行信用卡輸入的表單
https://github.com/adonixis/android-sumbit-credit-card-flow ★403 - MD風格的信用卡格式實現
https://github.com/Morxander/EditCard ★76 - 輸入信用卡號碼的自定義EditText
https://github.com/geeckmc/CardForm ★22 - Android信用卡借記卡互動表單
https://github.com/kingideayou/SlideBottomPanel ★671 - 實現知乎日報β版底部劃出視圖
https://github.com/baoyongzhang/android-ActionSheet ★644 - 仿照iOS UIActionSheet組件
https://github.com/ParkSangGwon/TedBottomPicker ★571 - 簡單的圖片選擇器
https://github.com/Kennyc1012/BottomSheet ★499 - 安卓BottomSheet風格的對話框
https://github.com/android-cjj/BottomSheets ★327 - BottomSheets控件的使用
https://github.com/SpikeKing/BottomDialogDemo ★197 - 使用 DialogFragment 實現底部彈窗布局
https://github.com/race604/WaveLoading ★1051 - 能夠提供波浪動畫的Drawable
https://github.com/john990/WaveView ★987 - Android波浪視圖
https://github.com/gelitenight/WaveView ★915 - 顯示波浪效果的視圖
https://github.com/1139618418/WaveView ★104 - 有趣的水波紋效果的界面
https://github.com/Airsaid/DiffuseView ★25 - 自定義的圓形擴散View
https://github.com/StevenDXC/DxWaveRefresh ★25 - 波浪效果的下拉刷新
https://github.com/AndroidMsky/BitmapWaveView ★17 - 在bitmap中顯示進度波浪
https://github.com/AndreiD/TSnackBar ★591 - 從頂部顯示一個Snackbar
https://github.com/HuanHaiLiuXin/SnackbarUtils ★370 - Snackbar工具類
https://github.com/liuguangqiang/CookieBar ★327 - 屏幕的底部或者頂部顯示短信息
https://github.com/matecode/Snacky ★327 - 在布局中添加Snackbar
https://github.com/HuanHaiLiuXin/SweetTips ★58 - 快意靈動的提示庫
https://github.com/KeepSafe/TapTargetView ★2548 - 用戶引導功能的實現
https://github.com/worker8/TourGuide ★2015 - 應用使用方法指導視圖
https://github.com/barteksc/AndroidPdfViewer ★1817 - Android中顯示PDF文檔的庫
https://github.com/Cleveroad/SlidingTutorial-Android ★1813 - Android滑動引導頁庫
https://github.com/deano2390/MaterialShowcaseView ★1729 - MD主題的ShowcaseView
https://github.com/hongyangAndroid/Highlight ★1675 - app指向性功能高亮的庫
https://github.com/iammert/MaterialIntroView ★1636 - 給 Android 應用添加用戶引導
https://github.com/HeinrichReimer/material-intro ★1135 - 簡單的MD風格的應用介紹頁
https://github.com/Popalay/Tutors ★74 - 種顯示用戶界面教程
https://github.com/limedroid/XAnimLayout ★17 - 輕松實現引導頁動畫
https://github.com/MasayukiSuda/BubbleLayout ★534 - 氣泡文字框
https://github.com/cpiz/BubbleView ★477 - 帶箭頭的Android氣泡控件/容器類
https://github.com/pinguo-zhouwei/CustomPopwindow ★189 - PopupWindow 的常用API封裝
https://github.com/r0adkll/Slidr ★1386 - 滑動消失功能
https://github.com/liuguangqiang/SwipeBack ★1038 - 使用手勢完成Activity
https://github.com/Jude95/SwipeBackHelper ★964 - 仿微信下級activity聯動效果
https://github.com/XBeats/and_swipeback ★727 - 利用滑動手勢退出當前Activity
https://github.com/oubowu/SlideBack ★661 - 高仿微信視差手勢滑動返回庫
https://github.com/bingoogolapple/BGASwipeBackLayout-Android ★615 - 實現滑動返回布局
https://github.com/sockeqwe/SwipeBack ★577 - 滑動回退功能
https://github.com/YoKeyword/SwipeBackFragment ★315 - 滑動Fragment或Activity邊緣拖動返回
https://github.com/zhaozhentao/KugouLayout ★293 - 模仿酷狗播放器滑動返回的layout
https://github.com/hejunlin2013/TVSample ★513 - 仿泰捷視頻最新TV版 Metro UI
https://github.com/hejunlin2013/LivePlayback ★435 - Android TV直播電視節目
https://github.com/evilbinary/TvWidget ★284 - tv常用效果控件
https://github.com/songwenju/CustomTvRecyclerView ★37 - 針對Android Tv Launcher頁的recyclerView
https://github.com/hejunlin2013/EpisodeListView ★21 - Android劇集列表控件
https://github.com/Jacksgong/JKeyboardPanelSwitch ★2001 - 鍵盤面板沖突及布局閃動處理方案
https://github.com/pqpo/InputMethodHolder ★264 - 監聽系統軟鍵盤的狀態
https://github.com/yingLanNull/HideKeyboard ★194 - 自動隱藏軟鍵盤
https://github.com/GeorgeArgyrakis/FloatingKeyboard ★78 - 浮動可拖拽的KeyboardView
https://github.com/AlexMofer/SmoothInputLayout ★48 - 仿微信式平滑輸入面板
https://github.com/GabrielSamojlo/keyboard-dismisser ★32 - 點擊任何鍵盤外的部分來取消鍵盤
https://github.com/Hamadakram/KeyHide ★28 - 隱藏Android鍵盤的簡單方法
https://github.com/GitPhoenix/KeyboardView ★20 - 自定義安全鍵盤
https://github.com/laobie/StatusBarUtil ★3046 - 為Android應用設置狀態欄
https://github.com/niorgai/StatusBarCompat ★1260 - Android 沉浸式狀態欄
https://github.com/H07000223/FlycoSystemBar ★794 - SystemBar助手
https://github.com/baoyachi/StepView ★2408 - 步驟指示器
https://github.com/badoualy/stepper-indicator ★1012 - 引導步驟指示器
https://github.com/stepstone-tech/android-material-stepper ★928 - 在Android應用中使用MD步進
https://github.com/drozdzynski/Steppers ★695 - Android步驟視圖庫
https://github.com/VictorAlbertos/BreadcrumbsView ★551 - 顯示給定序列的當前步驟
https://github.com/saiwu-bigkoo/Android-SnappingStepper ★165 - 漂亮的增減數字控制UI控件
https://github.com/zhangxuyang321/StepView ★156 - 橫向版和豎向版步驟視圖
https://github.com/liuhaizhu/StateProgressView ★10 - 顯示網購物流信息等進度的android view
https://github.com/zhouchaoyuan/excelPanel ★1229 - 仿Excel表格的RecyclerView
https://github.com/Kelin-Hong/ScrollablePanel ★1226 - 二維RecyclerView
https://github.com/Cleveroad/AdaptiveTableLayout ★1057 - 讀取和寫入CSV文件
https://github.com/ISchwarz23/SortableTableView ★702 - 提供TableView和SortableTableView的安卓庫
https://github.com/InQBarna/TableFixHeaders ★653 - 帶有標題的表格的安卓部件
https://github.com/lungerWang/BiDirTable ★28 - 可雙向滑動的表格
https://github.com/RmondJone/LockTableView ★11 - Android自定義表格
https://github.com/andjdk/HVScrollListView ★6 - 實現橫縱滑動的列表控件
https://github.com/SchibstedSpain/Parallax-Layer-Layout ★751 - Android分層視差效果
https://github.com/Narfss/ParallaxEverywhere ★615 - 視差效果的另類Android視圖庫
https://github.com/gjiazhe/ScrollParallaxImageView ★395 - 滾動視差效果
https://github.com/AndroidMsky/linkScrollMsky ★57 - 仿知乎個人主頁漸隱嵌套滑動
https://github.com/danoz73/RecyclerViewFastScroller ★873 - 連接到RecyclerView實現快速滾動
https://github.com/kongnanlive/SideBar ★756 - 全新的快速索引導航欄
https://github.com/Solartisan/WaveSideBar ★726 - 快速跳躍分組的側邊欄控件
https://github.com/gjiazhe/WaveSideBar ★667 - 波浪效果索引側邊欄
https://github.com/L4Digital/FastScroll ★525 - 類似列表視圖的FastScroller
https://github.com/saiwu-bigkoo/Android-QuickSideBar ★363 - 快速查閱對應分組的側邊欄
https://github.com/mikepenz/AboutLibraries ★1738 - 提供庫信息的庫
https://github.com/medyo/android-about-page ★1224 - 快速創建獨一無二的About頁面
https://github.com/jrvansuita/MaterialAbout ★777 - 顯示一個MD風格的about頁面
https://github.com/daniel-stoneuk/material-about-library ★735 - 為app輕松創建關于頁面
https://github.com/drakeet/about-page ★92 - 基于MultiType的about頁面
https://github.com/leonHua/LSettingView ★41 - 設置界面條目封裝
https://github.com/cnbleu/SlideDetailsLayout ★239 - 上拉加載圖文詳情功能
https://github.com/happylishang/DragScrollDetailsLayout ★229 - 仿淘寶京東蘑菇街商品詳情頁
https://github.com/RiccardoMoro/LongPressPopup ★190 - 長按顯示詳細信息
https://github.com/hexianqiao3755/GoodsInfoPage ★181 - 仿京東天貓app的商品詳情頁
https://github.com/klinker41/article-android ★87 - 以可讀格式顯示web文章
https://github.com/iceAnson/NewsDetail ★59 - 仿詳情頁實現
https://github.com/chenpengfei88/WdjAppDetail ★44 - 仿豌豆莢應用列表跳轉詳情界面特效
https://github.com/LineChen/TwoPageLayout ★15 - 仿淘寶商品詳情頁
https://github.com/Clans/FloatingActionButton ★3086 - 浮動動作按鈕
https://github.com/gowong/material-sheet-fab ★1232 - 實現浮動操作按鈕的庫
https://github.com/JoaquimLey/FabOptions ★796 - 多功能自定義FAB組件
https://github.com/andremion/Floating-Navigation-View ★779 - 浮動菜單顯示錨導航視圖
https://github.com/bowyer-app/FabTransitionLayout ★423 - 浮動操作按鈕轉換
https://github.com/devsideal/SquareMenu ★403 - 可自定義的浮動動作按鈕
https://github.com/andremion/CounterFab ★345 - 在右上角顯示一個計數器的標記
https://github.com/chenupt/SpringIndicator ★1837 - 仿MorningRoutine引導的指示器
https://github.com/LyndonChin/AndroidRubberIndicator ★1388 - ViewPager的rubber指示器
https://github.com/shaohui10086/ShareUtil ★762 - 綜合性的分享及登錄工具庫
https://github.com/kayan1990/ShareButton ★440 - 一個具有流暢動畫的分享按鈕
https://github.com/zhangke3016/GeneratePicture ★123 - 選取頁面內容生成精美分享圖片
https://github.com/czy1121/update ★799 - 清晰靈活簡單易用的應用更新庫
https://github.com/yjfnypeu/UpdatePlugin ★679 - 自由定制的app更新組件
https://github.com/feicien/android-auto-update ★504 - 安卓應用自動更新庫
https://github.com/fccaikai/AppUpdate ★97 - Android 檢查更新庫
https://github.com/bingoogolapple/BGAUpdate-Android ★84 - 應用更新功能
https://github.com/qiangxi/CheckUpdateLibrary ★63 - Android專用檢查軟件更新的庫
https://github.com/rubensousa/FloatingToolbar ★1108 - FloatingActionButton變形而來的工具欄
https://github.com/badoualy/morphy-toolbar ★958 - 切換fragments的精致過渡動畫
https://github.com/afollestad/material-cab ★759 - 自定義的靈活上下文活動欄
https://github.com/githubwing/ByeBurger ★682 - 極其簡便的快速實現隱藏標題欄和導航欄
https://github.com/adonixis/android-animated-menu-items ★673 - toolbar中動畫菜單條目的示例
https://github.com/florent37/AwesomeBar ★481 - 優美的側邊工具菜單
https://github.com/RameshBhupathi/CollapsingToolbar-With-Webview ★183 - 帶有可折疊toolbar的Webview
https://github.com/JuL1205/SlideshowToolbar ★182 - 安卓Slideshow Toolbar
https://github.com/xiaohaibin/CustomTitileBar ★36 - 通用Android標題欄控件
https://github.com/askerov/DynamicGrid ★801 - Android可拖拽GridView
https://github.com/ISchwarz23/SortableTableView ★702 - 提供TableView和SortableTableView的安卓庫
https://github.com/AlphaBoom/ClassifyView ★284 - 拖拽合并的RecyclerView
https://github.com/SwiftyWang/android-drag-square ★209 - 編輯個人資料及圖片可拖拽排序
https://github.com/rockerhieu/emojicon ★2697 - Android中實現emojis表情
https://github.com/Luolc/EmojiRain ★494 - 小巧的Android掉emoji表情包實現
https://github.com/linger1216/labelview ★1335 - 輕松實現視圖之上的標簽
https://github.com/shts/TriangleLabelView ★583 - 顯示三角視圖
https://github.com/yanbober/AvatarLabelView ★411 - 可配置的迷你版輕量級 Label 輔助類
https://github.com/luxiliu/LabelLayout ★38 - 在另一個視圖頂部顯示標簽文本
https://github.com/lantouzi/WheelView-Android ★859 - 具有輪視圖的選擇器
https://github.com/shchurov/HorizontalWheelView ★806 - 供用戶輸入的模型水平輪控制器
https://github.com/LukeDeighton/WheelView ★689 - 實現一個可旋轉的輪盤
https://github.com/weidongjian/androidWheelView ★578 - 仿照iOS的滾輪控件
https://github.com/BCsl/CursorWheelLayout ★483 - 把視圖放到一個可旋轉輪子中
https://github.com/OrangeGangsters/LolliPin ★1136 - MD風格的Android的PIN碼庫
https://github.com/aritraroy/PatternLockView ★1004 - MD風格的Android解鎖視圖
https://github.com/aritraroy/PinLockView ★774 - PIN鎖自定義視圖
https://github.com/GoodieBag/Pinview ★403 - Android的Pinview庫
https://github.com/kevalpatel2106/PasscodeView ★132 - 輕松安全的驗證用戶
https://github.com/huzenan/EasyGestureUnlock ★18 - 輕量級手勢解鎖視圖
https://github.com/saulmm/CoordinatorBehaviorExample ★1966 - 仿Hangouts4簡介動畫
https://github.com/vitovalov/TabbedCoordinatorLayout ★664 - 演示CoordinatorLayout的示例項目
https://github.com/googlesamples/android-ConstraintLayoutExamples ★341 - 展示ContraintLayout的特性和使用
https://github.com/architjn/SharePanel ★47 - 顯示分享按鈕面板
https://github.com/Liuncoolman/collapsingtoolbarlayout ★11 - 可滑動懸浮式頂部導航欄
https://github.com/linfaxin/TransitionPlayer ★1136 - 控制過渡動畫的Android庫
https://github.com/eschao/android-PageFlip ★1095 - 3D風格頁面翻頁
https://github.com/wajahatkarim3/EasyFlipView ★640 - 快速而簡單的翻轉視圖
https://github.com/wealthfront/magellan ★213 - 最簡單的Android導航庫
https://github.com/zhangke3016/TranslationCompat ★101 - 動畫過渡兼容庫
https://github.com/liuguangli/FloatUtil ★144 - 簡單的浮窗工具
https://github.com/mrrobot97/NetSpeed ★33 - 懸浮窗網速顯示計
https://github.com/onlylemi/MapView ★483 - 室內地圖視圖
https://github.com/jineshfrancs/ThemedGoogleMap ★156 - 創建帶自定義主題的GoogleMap的實用類
https://github.com/ar-android/DrawRouteMaps ★144 - 路線地圖功能
https://github.com/yipianfengye/android-togetherMap ★25 - 高德地圖的marker聚合功能
https://github.com/falnatsheh/MarkdownView ★699 - Android的Markdown
https://github.com/tiagohm/MarkdownView ★556 - 顯示Markdown文本的Android庫
https://github.com/Hitomis/SortRichEditor ★280 - 圖文混合編輯的富文本編輯器
https://github.com/tiagohm/CodeView ★129 - Android 代碼高亮
https://github.com/rubensousa/PreviewSeekBar ★1811 - 顯示視頻預覽的SeekBar
https://github.com/woxingxiao/BubbleSeekBar ★834 - 自定義SeekBar
https://github.com/Jay-Goo/RangeSeekBar ★97 - 可雙向范圍選擇的SeekBar
https://github.com/Brioal/RangeSeekBar ★26 - 定值范圍選擇控件
https://github.com/Ajian-studio/GADownloading ★710 - 創意下載進度條
https://github.com/dudu90/FreshDownloadView ★611 - 顯示一個動畫下載進程
https://github.com/facebook/Shimmer ★7738 - 閃光效果插件
https://github.com/Bearded-Hen/Android-Bootstrap ★5914 - Bootstrap風格安卓主題
https://github.com/facebook/litho ★2732 - 創建Android高效UI
https://github.com/square/flow ★2217 - 命名UI狀態
https://github.com/lawloretienne/QuickReturn ★1452 - 展示QuickReturn UI 模塊
https://github.com/codeestX/ENViews ★1428 - 華麗麗的動效控件庫
https://github.com/UFreedom/FloatingView ★1166 - 使目標視圖漂浮在錨視圖上
https://github.com/andyxialm/SmoothCheckBox ★1040 - Android帶動畫的自定義CheckBox
https://github.com/ogaclejapan/ArcLayout ★999 - 非常簡單的arc布局庫
https://github.com/dongjunkun/CouponView ★974 - 優惠券效果
https://github.com/googlesamples/android-PictureInPicture ★939 - 演示手持設備畫中畫模式
https://github.com/baoyongzhang/BigBang ★894 - 仿了Smartisan OS 的 BigBang 功能
https://github.com/developer-shivam/Crescento ★883 - 圖像視圖和相關布局的下面添加曲線
https://github.com/sharish/ScratchView ★856 - 仿刮刮卡視圖
https://github.com/zagum/Android-ExpandIcon ★732 - Google風格上下箭頭的簡單自定義實現
https://github.com/JetradarMobile/android-snowfall ★711 - 安卓Snowfall View的全自定義實現
https://github.com/michael-rapp/ChromeLikeTabSwitcher ★700 - 標簽切換器
https://github.com/Yasic/QQBubbleView ★695 - 仿QQ空間直播禮物冒泡特效
https://github.com/recruit-lifestyle/FloatingView ★686 - 顯示懸浮窗效果
https://github.com/wuapnjie/StickerView ★685 - 貼紙視圖的縮放拖動翻轉刪除
https://github.com/kexanie/MathView ★676 - 在Android應用中顯示數學公式
https://github.com/mcxtzhang/PathAnimView ★648 - 用于做Path動畫的自定義View
https://github.com/misakuo/3dTagCloudAndroid ★630 - 將一組View展示為一個3D球形集合
https://github.com/IntruderShanky/Squint ★629 - 提供視圖的對角線裁剪
https://github.com/Ajian-studio/GABottleLoading ★608 - 貝塞爾風暴
https://github.com/dynamitechetan/FogView_Library ★576 - 安卓霧氣視圖庫
https://github.com/dalong982242260/LoopRotarySwitch ★548 - 3d旋轉切換view
https://github.com/florent37/Depth ★543 - 在fragments中添加Depth
https://github.com/a-voyager/ScrollNumber ★537 - 簡單優雅易用的滾動數字控件
https://github.com/ByoxCode/DrawView ★529 - 提供涂鴉功能
https://github.com/tomergoldst/tooltips ★523 - 在任何視圖上添加工具提示
https://github.com/FabianTerhorst/Isometric ★507 - 安卓圖形庫
https://github.com/kongnanlive/android-combination-avatar ★498 - 模仿QQ討論組組合頭像
https://github.com/ShogoMizumoto/ZDepthShadow ★480 - MD風格的安卓拉直深入陰影
https://github.com/crosswall/Android-Coverflow ★479 - 漂亮的Android封面瀏覽
https://github.com/klinker24/Android-DragDismissActivity ★479 - 滑動取消Activity
https://github.com/zhengken/LyricViewDemo ★479 - 強大靈活的歌詞視圖
https://github.com/CaMnter/EasyCountDownTextureView ★441 - 使用TextureView輕松實現倒計時
https://github.com/alibaba/Tangram-Android ★439 - 動態化構建Native頁面的框架
https://github.com/stkent/PolygonDrawingUtil ★433 - 在canvas上繪制規則多邊形
https://github.com/barryhappy/TContributionsView ★433 - 顯示類似github貢獻度的View
https://github.com/gjiazhe/LayoutSwitch ★407 - 列表布局與網格布局的切換
https://github.com/myinnos/AppIconNameChanger ★386 - 動態的改變安卓應用Icon和名稱
https://github.com/RiccardoMoro/FreeDrawView ★349 - 一個可以自由涂鴉的視圖
https://github.com/dolphinwang/ImageCoverFlow ★330 - 圖片封面瀏覽效果
https://github.com/wingjay/WJMagicCurveView ★303 - 神奇的魔法曲線
https://github.com/pcevikogullari/AndroidShortcuts ★289 - 快捷方式示例app
https://github.com/Freshman111/VerificationCodeView ★287 - 動態生成驗證碼
https://github.com/vlad1m1r990/Lemniscate ★286 - 制作別致的進度視圖
https://github.com/xenione/tab-digit ★273 - 一個Flip Clock 庫
https://github.com/qinci/EdgeTranslucent ★265 - 任意View邊沿漸變透明
https://github.com/Lauzy/LBehavior ★258 - 簡單實現標題欄導航欄滑動動畫
https://github.com/smartbetter/GooView ★242 - 一個自定義粘性控件
https://github.com/Yellow5A5/ClearScreenHelper ★238 - 清屏相關的需求
https://github.com/woxingxiao/DashboardView ★225 - 安卓自定義儀表盤View
https://github.com/ImmortalZ/jellyball ★219 - 高仿 path下拉小球
https://github.com/Hitomis/CrazyShadow ★215 - 為 View 添加陰影效果
https://github.com/hanbaokun/FloatingViewService ★198 - 一個服務開啟懸浮球
https://github.com/developer-shivam/ChanelView ★197 - 說明手勢的簡單用例
https://github.com/gavinliu/SimpleOneStep ★186 - 仿OneStep
https://github.com/YiiGuxing/CompositionAvatar ★184 - 仿QQ討論組頭像
https://github.com/jcmore2/FreeView ★179 - 浮動視圖
https://github.com/ChyengJason/ShoppingCart ★172 - 仿餓了么購物車效果
https://github.com/AlexLiuSheng/FloatView ★168 - 類似來電秀的效果
https://github.com/quiin/UnifiedContactPicker ★150 - 統一用戶聯系人
https://github.com/uin3566/DragFooterView ★143 - 向左拖拽跳轉至更多頁面
https://github.com/HalfStackDeveloper/FloatBall ★134 - 高仿flyme懸浮球
https://github.com/hzw1199/AndroidGpsStatus ★133 - 顯示GPS狀態和信號強度
https://github.com/AhmadNemati/WindView ★132 - 顯示天氣風速和壓力狀態
https://github.com/pavel163/AttributesDispatcher ★110 - 創建一個自定義視圖
https://github.com/MindorksOpenSource/SnapHelperExample ★98 - SnapHelper的Android示例
https://github.com/zhangyuChen1991/MagicLine ★85 - 簡單的規律繪制直線構造神奇的視覺效果
https://github.com/zhangxuyang321/XyzInfo ★81 - 自定義Switch和Ruler控件
https://github.com/stewForAni/Lamp ★80 - 簡單的Android工藝燈控件
https://github.com/hugeinc/Vibes ★76 - 安卓的徑向傳播背景
https://github.com/liuguangli/VerificationCodeInput ★65 - 簡潔驗證碼輸入框
https://github.com/a5533348/PayUI ★62 - 支付密碼彈出層
https://github.com/JuniperPhoton/FlipperView ★60 - 使用翻轉過渡改變不同狀態
https://github.com/ruzhan123/HorizontalNumberView ★60 - 簡單的Android滑動縮放視圖
https://github.com/jeanboydev/Android-RadarView ★59 - 仿支付寶芝麻分解讀
https://github.com/tdscientist/ShelfView ★55 - 顯示書架上的書的自定義視圖
https://github.com/donglua/GithubContributionsWidget ★55 - github貢獻的Android部件
https://github.com/skydoves/ElasticViews ★48 - 觸摸動畫Android視圖
https://github.com/hearsilent/PixelSlide ★46 - 上下的展開箭頭擴展示例
https://github.com/panacena/RuleView ★42 - 自定義刻度尺控件
https://github.com/webianks/EasyFeedback ★41 - 收集Android應用程序的反饋
https://github.com/LiuHongtao/PaintView ★40 - 在圖片上涂鴉
https://github.com/capur16/DigitSpeedView ★39 - 獨特的安卓數字測速儀
https://github.com/GHdeng/NetMonitor ★38 - 使用廣播監聽網絡變化
https://github.com/cdflynn/checkview ★32 - 動畫check標記
https://github.com/simplepeng/BubbleView ★29 - 模仿QQ水泡拖拽效果
https://github.com/ghnor/StatusBarFits ★24 - Android狀態欄
https://github.com/HeartlandSoftware/AndroidHeatMap ★23 - 易于使用的熱點圖控件
https://github.com/WangGanxin/CircleRangeView ★22 - 自定義圓形儀表盤View
https://github.com/fashare2015/HoverView ★19 - 仿知乎的底部抽屜
https://github.com/yongming9011/VerificationCodeView ★16 - Android簡單的驗證碼控件
https://github.com/dengzq/LetterView ★11 - 選中字母完成單詞
*請認真填寫需求信息,我們會在24小時內與您取得聯系。