android.view.ContextThemeWrapper cannot be cast to android.app.Activity

java.lang.ClassCastException: android.view.ContextThemeWrapper cannot be cast to android.app.Activity


这个错误出现的情况是在Dialog中的context,在强制装换成Activity是会出现的,这种情况的解决方法:

	private static Activity scanForActivity(Context cont) {
		if (cont == null)
			return null;
		else if (cont instanceof Activity)
			return (Activity) cont;
		else if (cont instanceof ContextWrapper)
			return scanForActivity(((ContextWrapper) cont).getBaseContext());

		return null;
	}
其实也是一个强制转换,不过多添加了三个判断条件,第一个不说了,判断context不为空,第二个是判断context可不可以直接转换成Activity,可以的话直接强制转换,第三个则是这个判断context是不是属于ContextWrapper,是的话将context强制转换成ContextWrapper,在用这个方法判断一次。。能解决大部分情况的这种错误
 
 

你可能感兴趣的:(android.view.ContextThemeWrapper cannot be cast to android.app.Activity)