Closed davcpas1234 closed 5 years ago
Caused when getting user's custom theme. Code is not calling .NoActionBar
style, this caused a conflict here:
setSupportActionBar(toolbar)
As the application uses a custom Toolbar
implementation in View Activity.
Change:
@Override
public Resources.Theme getTheme() {
[...]
String themeStringFull = getPackageName()+":style/"+themeString;
}else{
String themeStringFull = getPackageName()+":style/AppTheme";
[...]
}
to:
@Override
public Resources.Theme getTheme() {
[...]
String themeStringFull = getPackageName()+":style/"+themeString+".NoActionBar";
}else{
String themeStringFull = getPackageName()+":style/AppTheme.NoActionBar";
[...]
}
Application Version
0.0.5 (0.0.6)
Issue Description
Application crash is observed when attempting to view an Activity.
Steps to Reproduce
Stack Trace
Expected Behaviour
View Activity should open