2017-10-13 13 views
1

以前は、Robotelectricを使用してAlertDialogをテストするためにShadowAlertDialog.getLatestAlertDialog()を使用していました。しかし、私は自分のUIを更新して、今はV7サポートライブラリを使用しています。だから、それは私に互換性のない型エラーを与えている。Robolectic with V7サポートライブラリの問題

Error:(82, 50) error: incompatible types 
required: android.support.v7.app.AlertDialog 
found: android.app.AlertDialog 

この問題を解決する方法はありますか?

答えて

0

これは簡単です!変更先:

AlertDialog latestAlert = (AlertDialog) ShadowDialog.getLatestDialog() 
関連する問題