问题描述:
如果一个 View 绘制于某个 Activity 的 ContentView 上, 那它的 Context 一定是和这个 Activity 相关联的. 因此我们想在 View 中直接用 Activity 方法时 (最常用的应该就是 Activity.startActivity() 方法了), 不必再向 View 中传递 Activity 对象.
一般在 View 中获取这个 Activity 对象都是简单的用下面代码就可以了:
Activity activity = (Activity) getContext();
但在 View 继承自 AppCompat 系的 View 时 (比如 AppCompatTextView, AppCompatImageView), 下面方法可能会得到下面异常:
View view1 = ((Activity) view.getContext()).getLayoutInflater().inflate(R.layout.date_dialog, null);
**java.lang.ClassCastException: android.support.v7.widget.TintContextWrapper cannot be cast to ...Activity**
问题解决:
知道原因就简单了. 可以简单的用 ContextWrapper.getBaseContext()
得到这个 Activity. 但其实一层层的从 ContextWrapper 中把 Activity 剥出来更保险:
/**
* try get host activity from view.
* views hosted on floating window like dialog and toast will sure return null.
* @return host activity; or null if not available
*/
public static Activity getActivityFromView(View view) {
Context context = view.getContext();
while (context instanceof ContextWrapper) {
if (context instanceof Activity) {
return (Activity) context;
}
context = ((ContextWrapper) context).getBaseContext();
}
return null;
}
如上方法可以通用的解决从 View 中获取 Activity 的问题.
事实上, 谷歌 v7 包中的 Android.support.v7.app.MediaRouteButton
就是这么干的.