一個(gè)圖片加載的小工具Glide

AdjustBitmap

public class GlideUtils {

private static Stringhttp ="http:";

? ? private static Stringhttps ="https:";

? ? /**

? ? * 驗(yàn)證配置

? ? *

? ? * @param imageUrl? 地址

? ? * @param imageView 控件

? ? * @return boolean

*/

? ? private static boolean initConfig(String imageUrl, ImageView imageView) {

if (TextUtils.isEmpty(imageUrl) || imageView ==null) {

return false;

? ? ? ? }

return true;

? ? }

public static StringgetImageUrl(String imageUrl) {

if (!imageUrl.contains(http) && !imageUrl.contains(https)) {

imageUrl =http + imageUrl;

? ? ? ? }

return imageUrl;

? ? }

/**

? ? * 加載裁剪頂部的原型照片

? ? *

? ? * @param context

? ? * @param imageUrl

? ? * @param imageView

? ? */

? ? public static void adjustImage(Context context, String imageUrl, final ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context)

.load(imageUrl)

.placeholder(R.mipmap.ic_default_circular)

.error(R.mipmap.ic_default_circular)

.into(new SimpleTarget() {

@Override

? ? ? ? ? ? ? ? ? ? public void onResourceReady(GlideDrawable resource, GlideAnimation glideAnimation) {

Bitmap bitmap = AdjustBitmap.drawableToBitmap(resource);

? ? ? ? ? ? ? ? ? ? ? ? imageView.setImageBitmap(AdjustBitmap.getCircleBitmap(bitmap));

? ? ? ? ? ? ? ? ? ? }

});

? ? }

/**

? ? * 加載裁剪頂部的原型照片

? ? *

? ? * @param context

? ? * @param imageUrl

? ? * @param imageView

? ? */

? ? public static void adjustImage(Context context, String imageUrl, final ImageView imageView, final int scaleW, final int scaleH) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context)

.load(imageUrl)

.placeholder(R.mipmap.ic_default_circular)

.error(R.mipmap.ic_default_circular)

.into(new SimpleTarget() {

@Override

? ? ? ? ? ? ? ? ? ? public void onResourceReady(GlideDrawable resource, GlideAnimation glideAnimation) {

Bitmap bitmap = AdjustBitmap.drawableToBitmap(resource);

? ? ? ? ? ? ? ? ? ? ? ? imageView.setImageBitmap(AdjustBitmap.cropBitmap(bitmap,scaleW,scaleH));

? ? ? ? ? ? ? ? ? ? }

});

? ? }

/**

? ? * 1.網(wǎng)絡(luò)加載圖片到ImageView中

? ? */

? ? public static void loadImage(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl).into(imageView);

? ? }

/**

? ? * 1.網(wǎng)絡(luò)加載圖片到ImageView中

? ? */

? ? public static void loadImage(Context context, String imageUrl, ImageView imageView,int width,int height) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context)

.load(imageUrl)

.placeholder(R.mipmap.ic_default_rectangle)

.error(R.mipmap.ic_default_rectangle)

.override(width,height)

.into(imageView);

? ? }

/**

? ? * 加載長(zhǎng)方形圖片

? ? */

? ? public static void rectangleImage(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.placeholder(R.mipmap.ic_default_rectangle)

.error(R.mipmap.ic_default_rectangle)

.into(imageView);

? ? }

/**

? ? * 加載長(zhǎng)方形圖片

? ? */

? ? public static void rectangleImage(Context context, String imageUrl, ImageView imageView,int width,int height) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.placeholder(R.mipmap.ic_default_rectangle)

.error(R.mipmap.ic_default_rectangle)

.override(width,height)

.into(imageView);

? ? }

/**

? ? *? 加載長(zhǎng)方形圓角圖片

? ? */

? ? public static void rectangleRoundImage(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.placeholder(R.mipmap.ic_default_rectangle)

.error(R.mipmap.ic_default_rectangle)

.transform(new GlideRoundTransform(context))

.into(imageView);

? ? }

/**

? ? *? 加載長(zhǎng)方形圓角圖片

? ? */

? ? public static void rectangleRoundImage(Context context, String imageUrl, ImageView imageView,int width,int height) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.placeholder(R.mipmap.ic_default_rectangle)

.error(R.mipmap.ic_default_rectangle)

.override(width,height)

.transform(new GlideRoundTransform(context))

.into(imageView);

? ? }

/**

? ? *? 加載長(zhǎng)方形圓角圖片

? ? */

? ? public static void rectangleRoundImage(Context context, String imageUrl, ImageView imageView, int mRadius) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.placeholder(R.mipmap.ic_default_rectangle)

.error(R.mipmap.ic_default_rectangle)

.transform(new GlideRoundTransform(context, mRadius))

.into(imageView);

? ? }

/**

? ? *? 加載長(zhǎng)方形圓角圖片

? ? */

? ? public static void rectangleRoundImage(Context context, String imageUrl, ImageView imageView, int mRadius,int width,int height) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.placeholder(R.mipmap.ic_default_rectangle)

.error(R.mipmap.ic_default_rectangle)

.override(width,height)

.transform(new GlideRoundTransform(context, mRadius))

.into(imageView);

? ? }

/**

? ? * 加載正方形圖片

? ? */

? ? public static void squareImage(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.placeholder(R.mipmap.ic_default_square)

.error(R.mipmap.ic_default_square)

.into(imageView);

? ? }

/**

? ? *? 加載正方形圓角圖片

? ? */

? ? public static void squareRoundImage(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.placeholder(R.mipmap.ic_default_square)

.error(R.mipmap.ic_default_square)

.transform(new GlideRoundTransform(context)).into(imageView);

? ? }

/**

? ? *? 加載正方形圓角圖片

? ? */

? ? public static void squareRoundImage(Context context, String imageUrl, ImageView imageView, int mRadius) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.placeholder(R.mipmap.ic_default_square)

.error(R.mipmap.ic_default_square)

.transform(new GlideRoundTransform(context, mRadius)).into(imageView);

? ? }

/**

? ? * 11 加載圓形圖片

? ? */

? ? public static void loadCircleImg(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl).transform(new GlideCircleTransform(context)).into(imageView);

? ? }

/**

? ? * 11 加載圓形圖片

? ? */

? ? public static void loadCircleImg(Context context, String imageUrl, ImageView imageView, int width, int height) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl)

.override(width,height)

.transform(new GlideCircleTransform(context)).into(imageView);

? ? }

/**

4.圖片的縮放祟滴,centerCrop()和fitCenter():

*/

/**

? ? * 1)使用centerCrop是利用圖片圖填充ImageView設(shè)置的大小朗若,如果ImageView的Height是match_parent則圖片就會(huì)被拉伸填充

? ? */

? ? public static void loadCenterCrop(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl).centerCrop().into(imageView);

? ? }

/**

? ? * 2)使用fitCenter即縮放圖像讓圖像都測(cè)量出來(lái)等于或小于 ImageView 的邊界范圍,該圖像將會(huì)完全顯示瞪慧,但可能不會(huì)填滿整個(gè)ImageView。

? ? */

? ? public static void loadFitCenter(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl).fitCenter().into(imageView);

? ? }

/**

? ? * 5.加載gif動(dòng)畫(huà)

? ? */

? ? public static void loadAsGif(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl).asGif().into(imageView);

? ? }

/**

? ? * 5.加載gif動(dòng)畫(huà)

? ? */

? ? public static void loadAsGif(Context context, int gifId, ImageView imageView) {

try {

pl.droidsonroids.gif.GifDrawable drawable=new pl.droidsonroids.gif.GifDrawable(context.getResources(),gifId);

? ? ? ? ? ? imageView.setImageDrawable(drawable);

? ? ? ? }catch (IOException e) {

e.printStackTrace();

? ? ? ? }

}

/**

? ? * 6.顯示本地視頻

? ? */

? ? public static void loadVideo(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? imageUrl ="/storage/emulated/0/Pictures/example_video.mp4";

? ? ? ? // Glide.with( context ).load(Uri.fromFile( new File(imageUrl) ) ).into(imageViewGifAsBitmap );

? ? }

/**7.緩存策略

*

*? DiskCacheStrategy.NONE 什么都不緩存

DiskCacheStrategy.SOURCE 僅僅只緩存原來(lái)的全分辨率的圖像

DiskCacheStrategy.RESULT 僅僅緩存最終的圖像坠七,即降低分辨率后的(或者是轉(zhuǎn)換后的)

DiskCacheStrategy.ALL 緩存所有版本的圖像(默認(rèn)行為)

*/

/**

? ? * 跳過(guò)內(nèi)存緩存

? ? *

? ? * @param context

? ? * @param imageUrl

? ? * @param imageView

? ? */

? ? public static void loadSkipMemoryCache(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl).skipMemoryCache(true).into(imageView);

? ? }

/**

? ? * 跳過(guò)硬盤(pán)緩存

? ? *

? ? * @param context

? ? * @param imageUrl

? ? * @param imageView

? ? */

? ? public static void loadDiskCacheStrategy(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl).diskCacheStrategy(DiskCacheStrategy.NONE).into(imageView);

? ? }

/**

? ? * 8.優(yōu)先級(jí)岖食,設(shè)置圖片加載的順序:

? ? */

? ? public static void loadPriority(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context).load(imageUrl).priority(Priority.HIGH).into(imageView);

? ? }

/**

? ? * 9.獲取Bitmap癌蚁,設(shè)置CircleImageVIew可以使用這個(gè)ImageView庫(kù)

? ? */

? ? public static void loadBitmap(Context context, String imageUrl, ImageView imageView) {

if (!initConfig(imageUrl, imageView)) {

return;

? ? ? ? }

imageUrl =getImageUrl(imageUrl);

? ? ? ? Glide.with(context)

.load(imageUrl)

.placeholder(R.drawable.ic_loading_rotate)

.into(new SimpleTarget() {

@Override

? ? ? ? ? ? ? ? ? ? public void onResourceReady(GlideDrawable resource, GlideAnimation glideAnimation) {

}

});

? ? }

//圓形圖片

? ? public static class GlideCircleTransformextends BitmapTransformation {

public GlideCircleTransform(Context context) {

super(context);

? ? ? ? }

@Override

? ? ? ? protected Bitmaptransform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {

return circleCrop(pool, toTransform);

? ? ? ? }

private BitmapcircleCrop(BitmapPool pool, Bitmap source) {

if (source ==null) {

return null;

? ? ? ? ? ? }

int size = Math.min(source.getWidth(), source.getHeight());

? ? ? ? ? ? int x = (source.getWidth() - size) /2;

? ? ? ? ? ? int y = (source.getHeight() - size) /2;

? ? ? ? ? ? // TODO this could be acquired from the pool too

? ? ? ? ? ? Bitmap squared = Bitmap.createBitmap(source, x, y, size, size);

? ? ? ? ? ? Bitmap result = pool.get(size, size, Bitmap.Config.ARGB_8888);

? ? ? ? ? ? if (result ==null) {

result = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);

? ? ? ? ? ? }

Canvas canvas =new Canvas(result);

? ? ? ? ? ? Paint paint =new Paint();

? ? ? ? ? ? paint.setShader(new BitmapShader(squared, BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP));

? ? ? ? ? ? paint.setAntiAlias(true);

? ? ? ? ? ? float r = size /2f;

? ? ? ? ? ? canvas.drawCircle(r, r, r, paint);

? ? ? ? ? ? return result;

? ? ? ? }

@Override

? ? ? ? public StringgetId() {

return getClass().getName();

? ? ? ? }

}

//圓角圖片

? ? public static class GlideRoundTransformextends BitmapTransformation {

private float radius =0f;

? ? ? ? public GlideRoundTransform(Context context) {

this(context, 4);

? ? ? ? }

public GlideRoundTransform(Context context, int dp) {

super(context);

? ? ? ? ? ? this.radius = Resources.getSystem().getDisplayMetrics().density * dp;

? ? ? ? }

@Override

? ? ? ? protected Bitmaptransform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {

return roundCrop(pool, toTransform);

? ? ? ? }

private BitmaproundCrop(BitmapPool pool, Bitmap source) {

if (source ==null) {

return null;

? ? ? ? ? ? }

Bitmap result = pool.get(source.getWidth(), source.getHeight(), Bitmap.Config.ARGB_8888);

? ? ? ? ? ? if (result ==null) {

result = Bitmap.createBitmap(source.getWidth(), source.getHeight(), Bitmap.Config.ARGB_8888);

? ? ? ? ? ? }

Canvas canvas =new Canvas(result);

? ? ? ? ? ? Paint paint =new Paint();

? ? ? ? ? ? paint.setShader(new BitmapShader(source, BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP));

? ? ? ? ? ? paint.setAntiAlias(true);

? ? ? ? ? ? RectF rectF =new RectF(0f, 0f, source.getWidth(), source.getHeight());

? ? ? ? ? ? canvas.drawRoundRect(rectF, radius, radius, paint);

? ? ? ? ? ? return result;

? ? ? ? }

@Override

? ? ? ? public StringgetId() {

return getClass().getName() + Math.round(radius);

? ? ? ? }

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末召夹,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子售碳,更是在濱河造成了極大的恐慌强重,老刑警劉巖,帶你破解...
    沈念sama閱讀 216,651評(píng)論 6 501
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件贸人,死亡現(xiàn)場(chǎng)離奇詭異间景,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)艺智,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,468評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門(mén)倘要,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人十拣,你說(shuō)我怎么就攤上這事封拧。” “怎么了夭问?”我有些...
    開(kāi)封第一講書(shū)人閱讀 162,931評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵泽西,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我缰趋,道長(zhǎng)捧杉,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,218評(píng)論 1 292
  • 正文 為了忘掉前任秘血,我火速辦了婚禮味抖,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘灰粮。我一直安慰自己仔涩,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,234評(píng)論 6 388
  • 文/花漫 我一把揭開(kāi)白布粘舟。 她就那樣靜靜地躺著熔脂,像睡著了一般佩研。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上锤悄,一...
    開(kāi)封第一講書(shū)人閱讀 51,198評(píng)論 1 299
  • 那天韧骗,我揣著相機(jī)與錄音嘉抒,去河邊找鬼零聚。 笑死,一個(gè)胖子當(dāng)著我的面吹牛些侍,可吹牛的內(nèi)容都是我干的隶症。 我是一名探鬼主播,決...
    沈念sama閱讀 40,084評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼岗宣,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼蚂会!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起耗式,我...
    開(kāi)封第一講書(shū)人閱讀 38,926評(píng)論 0 274
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤胁住,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后刊咳,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體彪见,經(jīng)...
    沈念sama閱讀 45,341評(píng)論 1 311
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,563評(píng)論 2 333
  • 正文 我和宋清朗相戀三年娱挨,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了余指。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,731評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡跷坝,死狀恐怖酵镜,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情柴钻,我是刑警寧澤淮韭,帶...
    沈念sama閱讀 35,430評(píng)論 5 343
  • 正文 年R本政府宣布,位于F島的核電站贴届,受9級(jí)特大地震影響缸濒,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜粱腻,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,036評(píng)論 3 326
  • 文/蒙蒙 一庇配、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧绍些,春花似錦捞慌、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,676評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)袖订。三九已至,卻和暖如春嗅虏,著一層夾襖步出監(jiān)牢的瞬間洛姑,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,829評(píng)論 1 269
  • 我被黑心中介騙來(lái)泰國(guó)打工皮服, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留楞艾,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 47,743評(píng)論 2 368
  • 正文 我出身青樓龄广,卻偏偏與公主長(zhǎng)得像硫眯,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子择同,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,629評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容

  • 一两入、簡(jiǎn)介 在泰國(guó)舉行的谷歌開(kāi)發(fā)者論壇上,谷歌為我們介紹了一個(gè)名叫Glide的圖片加載庫(kù)敲才,作者是bumptech裹纳。這...
    天天大保建閱讀 7,472評(píng)論 2 28
  • 導(dǎo)入Picasso和Glide都在jcenter上。在項(xiàng)目中添加依賴非常簡(jiǎn)單:Picassodependencie...
    瀚海江天閱讀 4,463評(píng)論 0 2
  • Spring Cloud為開(kāi)發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見(jiàn)模式的工具(例如配置管理紧武,服務(wù)發(fā)現(xiàn)剃氧,斷路器,智...
    卡卡羅2017閱讀 134,652評(píng)論 18 139
  • 作為一個(gè)離開(kāi) wifi 不能生存的網(wǎng)蟲(chóng)脏里,我把每天都會(huì)上去看個(gè)幾分鐘的網(wǎng)站做了一個(gè) daily 的文件夾扔在瀏覽器里...
    HybridRbt閱讀 564評(píng)論 0 1
  • 動(dòng)動(dòng)手指 寫(xiě)詩(shī)玩 動(dòng)動(dòng)手指 賺錢樂(lè) 寫(xiě)詩(shī)我高雅 賺錢我低俗 雅俗共賞是我友 暢聊至天明 世界這么大 有緣是天意 2...
    觀海聽(tīng)濤_6ae8閱讀 101評(píng)論 0 0