Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev/1.1.4 #67

Merged
merged 36 commits into from
Jun 14, 2020
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
cad4f59
1.切分出1.1.4开发分支
xuexiangjys Mar 9, 2020
35fcd95
增加内联布局使用演示
xuexiangjys Mar 11, 2020
030f637
增加vlayout演示
xuexiangjys Mar 19, 2020
a6350a2
修复AdapterItem可能存在的问题
xuexiangjys Mar 21, 2020
833548a
删除wiki图片
xuexiangjys Mar 24, 2020
be78ca6
调整快捷搜索功能页面
xuexiangjys Mar 31, 2020
14e93ba
修改多个页面的启动模式
xuexiangjys Apr 1, 2020
10dcaeb
MaterialEditText增加支持下划线高度设置的属性
xuexiangjys Apr 1, 2020
d84066f
增加控件自定义动画
xuexiangjys Apr 1, 2020
828dcf7
增加NestedScrollingParent2使用
xuexiangjys Apr 6, 2020
3ab59a4
完善vlayout的使用案例
xuexiangjys Apr 6, 2020
cdd6df0
完善阿里巴巴组件使用案例
xuexiangjys Apr 6, 2020
b589073
完善阿里巴巴组件使用案例
xuexiangjys Apr 8, 2020
d12d30c
完善阿里巴巴组件使用案例
xuexiangjys Apr 9, 2020
9508882
增加复杂嵌套滚动效果案例
xuexiangjys Apr 12, 2020
f86a4b0
增加内容
xuexiangjys Apr 18, 2020
c6fea3a
优化选项卡使用案例
xuexiangjys Apr 20, 2020
021088d
增加粘顶嵌套滚动布局使用案例
xuexiangjys Apr 24, 2020
6598a0a
增加多状态布局加载者
xuexiangjys Apr 28, 2020
30025c6
完善多状态布局加载者演示
xuexiangjys Apr 29, 2020
a99896e
粘顶效果的多种实现方式演示
xuexiangjys May 2, 2020
0df7ace
增加工具类
xuexiangjys May 2, 2020
f80b6d8
解决图片预览可能存在的崩溃问题
xuexiangjys May 3, 2020
0ca0e24
优化代码,提高代码质量
xuexiangjys May 3, 2020
0823acb
优化代码,提高代码质量
xuexiangjys May 7, 2020
624f79d
优化代码,提高代码质量
xuexiangjys May 8, 2020
2dd304a
增加工具类
May 13, 2020
9b08517
优化代码,提高代码质量
xuexiangjys May 13, 2020
c3a9680
升级target版本为29
xuexiangjys May 13, 2020
700f61e
升级字体库版本
xuexiangjys May 19, 2020
10b0d3e
增加自动断字演示
xuexiangjys May 19, 2020
88a96b6
完善组件
xuexiangjys May 20, 2020
513361f
设置存储兼容模式
xuexiangjys May 20, 2020
71128d2
增加ViewPager2使用案例
May 29, 2020
8782ae8
升级XUtil库的版本
xuexiangjys Jun 5, 2020
6bfc161
发布1.1.4版本
xuexiangjys Jun 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
修复AdapterItem可能存在的问题
  • Loading branch information
xuexiangjys committed Mar 21, 2020
commit a6350a23a03a606a55908e1161a192f4abe6e525
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,11 @@ public AdapterItem(CharSequence title, int drawableId) {
}

public AdapterItem(Context context, int titleId, int drawableId) {
mTitle = context.getResources().getText(titleId);
mIcon = context.getResources().getDrawable(drawableId);
this(ResUtils.getString(titleId), ResUtils.getDrawable(context, drawableId));
}

public AdapterItem(Context context, CharSequence title, int drawableId) {
mTitle = title;
mIcon = context.getResources().getDrawable(drawableId);
this(title, ResUtils.getDrawable(context, drawableId));
}

public CharSequence getTitle() {
Expand Down