This repository was archived by the owner on Jan 15, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
java/subreddit/android/appstore/screens/list Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ android {
2424 buildToolsVersion " 24.0.2"
2525
2626 def versionMajor = 0
27- def versionMinor = 2
27+ def versionMinor = 3
2828 def versionPatch = 0
2929 def versionBuild = 0
3030
Original file line number Diff line number Diff line change 99import android .widget .ImageView ;
1010import android .widget .TextView ;
1111
12- import com .bumptech .glide .Glide ;
1312import com .futuremind .recyclerviewfastscroll .SectionTitleProvider ;
1413import com .wefika .flowlayout .FlowLayout ;
1514
2625import subreddit .android .appstore .backend .data .AppTags ;
2726import subreddit .android .appstore .util .ui .BaseAdapter ;
2827import subreddit .android .appstore .util .ui .BaseViewHolder ;
29- import subreddit .android .appstore .util .ui .glide .PlaceHolderRequestListener ;
3028
3129
3230public class AppListAdapter extends BaseAdapter <AppListAdapter .ViewHolder > implements Filterable , SectionTitleProvider {
@@ -84,10 +82,10 @@ public void bind(AppInfo item) {
8482 appName .setText (item .getAppName ());
8583 description .setText (item .getDescription ());
8684
87- Glide .with (getContext ())
88- .load (R .mipmap .ic_launcher )
89- .listener (new PlaceHolderRequestListener (iconImage , iconPlaceholder ))
90- .into (iconImage );
85+ // Glide.with(getContext())
86+ // .load(R.mipmap.ic_launcher)
87+ // .listener(new PlaceHolderRequestListener(iconImage, iconPlaceholder))
88+ // .into(iconImage);
9189
9290 tagContainer .removeAllViews ();
9391 for (AppTags appTags : item .getTags ()) {
Original file line number Diff line number Diff line change 1111 android : layout_width =" 40dp"
1212 android : layout_height =" 40dp"
1313 android : layout_gravity =" top"
14+ android : visibility =" gone"
1415 android : layout_marginLeft =" 16dp"
1516 android : layout_marginStart =" 16dp"
1617 android : layout_marginTop =" 16dp" >
3435 android : layout_width =" match_parent"
3536 android : layout_height =" wrap_content"
3637 android : layout_marginEnd =" 16dp"
37- android : layout_marginLeft =" 72dp "
38+ android : layout_marginLeft =" 16dp "
3839 android : layout_marginRight =" 16dp"
39- android : layout_marginStart =" 72dp "
40+ android : layout_marginStart =" 16dp "
4041 android : paddingBottom =" 16dp"
4142 android : paddingTop =" 16dp" >
4243
You can’t perform that action at this time.
0 commit comments