Android OSS license plugin crash on tapping menu items

℡╲_俬逩灬. 提交于 2019-11-30 10:56:40
Vladimir Farafonov

Just specify appropriate theme in the AndroidManifest.xml file for 2 activities OssLicensesMenuActivity and OssLicensesActivity. For example:

<activity android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
    android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar"/>

<activity android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
    android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar"/>

Application tag

<application
        android:theme="@style/AppTheme">

application/>

and styles.xml

 <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
    </style>

I hope ActionBar required to set Title of activity

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!