每天一个知识点
- Toast.LENGTH_SHORT和 Toast.LENGTH_LONG分别对应多长时间?
static final long SHORT_DURATION_TIMEOUT = 4000;
static final long LONG_DURATION_TIMEOUT = 7000;
多次调用toast.show会依次展示,展示本次view之前会把之前的view remove掉
2.反射可以获取泛型类型吗?
getGenericType()
https://www.zhihu.com/question/346911525/answer/830285753
https://cloud.tencent.com/developer/article/1447092
3.hashMap链表长度为什么超过8转化为红黑树?
https://blog.csdn.net/reliveIT/article/details/82960063
红黑树节点数小于6转换为链表
统计计算,柏松分布,时间,空间权衡。
4.rxjava如何实现线程切换?
Scheduler scheduleDirect, 新建线程池,worker队列
ioThread, computationthread, new Thread
UI MainThread:Handler切换
5.Fragment not attached to activity?
可能发生在Activity销毁重建时,fragment中需要context进行布局操作的时候(tvMsg.setText(getResources().getString(R.string.app_name)))。解决如下:
Activity activity = getActivity();
if (isAdded() && activity != null) {
...
}
Fragment保存状态:setRetainInstance(true);
但onAttach和onActivityCreated还会被重新调用,只是不调用onDestroy和onCreate. 设置了setRetainInstance方法,旋转屏幕时,EditText中输入的内容也会被清除呢?这是因为Fragment的onCreateView方法被重新执行了,重新创建了一个新的View,以前输入的内容就没有了。可以设置一个全局的View,方法如下:
View view = null;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
if ( view == null ) {
Log.e("TestFragment", "view == null");
view = inflater.inflate(R.layout.fragment_second, container, false);
}
return view;
}
6.ContentProvider: onCreate调用时机:Application :attachBaseContext之后,Application: onCreate之前;所以在ContentProvider: onCreate中getContext 可返回application,也可以做一些初始化操作(三方sdk);
- double和float进行浮点计算会产生精度问题,使用 BigDecimal解决,BigDecimal传递参数要使用string,否则也有有问题。
var a = 0.4f
// var b = a*100
(BigDecimal(floatNum.toString()).multiply(BigDecimal(100)))
- attrs和theme可实现不同包使用不同的主题;或者不同flavor的上层依赖同一个sdk,如果该sdk要展示同样的布局,只是颜色or背景不一致,可以在sdk中将差异化属性定义为attrs,然后在上层定义theme,在不同的flavor中为属性设置差异化值。
//attrs.xml 增加属性的定义
<!-- 按钮背景色 -->
<attr name="confirm_btn_color" format="reference|color" />
//drawable/positive_btn_bg.xml。使用属性
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="?attr/confirm_btn_color" />
<corners android:radius="6dp" />
</shape>
//layout.xml 使用背景
<Button
android:id="@+id/confirm_btn"
android:background="@drawable/positive_btn_bg"
.../>
//style.xml;上层项目,在不同flavor包中定义相同的style,为attr赋值
<style name="DIYStyle" >
<item name="confirm_btn_color">@color/color_common_main</item>
</style>
//属性使用:设置使用Theme
- ViewStub使用
private var mLayout: ViewStub = view.findViewById<ViewStub>(R.id.layout)
val view = mLayout.inflate()
//mLayout .findViewById(R.id.title) 会返回空,要用inflate结果findView才可以
val title: TextView = view.findViewById(R.id.title)