Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
whats-open-android
Commits
fc69eed7
Commit
fc69eed7
authored
Sep 26, 2018
by
michael lundquist
Browse files
Adding a base activity that will change what's being overriden
parent
7fd3afd7
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/src/main/java/srct/whatsopen/views/activities/BaseThemeActivity.java
0 → 100644
View file @
fc69eed7
package
srct.whatsopen.views.activities
;
import
android.os.Bundle
;
import
android.support.v7.app.AppCompatActivity
;
import
srct.whatsopen.R
;
public
abstract
class
BaseThemeActivity
extends
AppCompatActivity
{
@Override
public
void
onCreate
(
Bundle
bundle
)
{
setTheme
(
R
.
style
.
darkTheme
);
super
.
onCreate
(
bundle
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment