KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
PhotoPickApp
★ 9
Open GitHub ↗
Photo selection APP 模仿qq图片选择器
Download README (.md)
Explore Similar Repositories
iOSAPP
:
自用oc框架
Binary-Hyperdimensional-Computing-Trade-offs-in-Choice-of-Density-and-Mapping
:
No description available.
numo-fftw
:
FFTW interface for Ruby/Numo
PlayMarket-2.0-Contracts
:
Smart contracts of DAO PlayMarket 2.0 platform
bnpsd
:
R package to model and simulate admixed populations
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
PhotoPickApp
?
Download (.md)
# PhotoPickApp 该项目是一款模仿qq的图片选择器,加入了动画效果,使用VIewPager浏览图片,初步处理了加载大图多图时内存占用过大。  <br/> 主要技术使用ContentResolver读取本地图片 ``` Cursor mCursor = resolver.query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, null, MediaStore.Images.Media.MIME_TYPE + "=? or " + MediaStore.Images.Media.MIME_TYPE + "=?", new String[] { "image/jpeg", "image/png" }, "-"+MediaStore.Images.Media.DATE_MODIFIED); ``` 