mirror of
https://codeberg.org/gitnex/GitNex.git
synced 2024-12-26 16:04:07 +08:00
Use only one statement for new theme.
This commit is contained in:
parent
61f953d70d
commit
900b060c31
@ -17,10 +17,7 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||||||
|
|
||||||
final TinyDB tinyDb = new TinyDB(getApplicationContext());
|
final TinyDB tinyDb = new TinyDB(getApplicationContext());
|
||||||
|
|
||||||
if(tinyDb.getInt("themeId") == 0) {
|
if(tinyDb.getInt("themeId") == 1) {
|
||||||
setTheme(R.style.AppTheme);
|
|
||||||
}
|
|
||||||
else if(tinyDb.getInt("themeId") == 1) {
|
|
||||||
setTheme(R.style.AppThemeLight);
|
setTheme(R.style.AppThemeLight);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -114,13 +114,10 @@ public class RepoStargazersAdapter extends BaseAdapter {
|
|||||||
viewHolder.memberName.setTypeface(myTypeface);
|
viewHolder.memberName.setTypeface(myTypeface);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(tinyDb.getInt("themeId") == 0) { // dark
|
if(tinyDb.getInt("themeId") == 1) { //light
|
||||||
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
|
|
||||||
}
|
|
||||||
else if(tinyDb.getInt("themeId") == 1) { //light
|
|
||||||
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.lightThemeTextColor));
|
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.lightThemeTextColor));
|
||||||
}
|
}
|
||||||
else {
|
else { // dark
|
||||||
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
|
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,13 +114,10 @@ public class RepoWatchersAdapter extends BaseAdapter {
|
|||||||
viewHolder.memberName.setTypeface(myTypeface);
|
viewHolder.memberName.setTypeface(myTypeface);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(tinyDb.getInt("themeId") == 0) { // dark
|
if(tinyDb.getInt("themeId") == 1) { //light
|
||||||
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
|
|
||||||
}
|
|
||||||
else if(tinyDb.getInt("themeId") == 1) { //light
|
|
||||||
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.lightThemeTextColor));
|
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.lightThemeTextColor));
|
||||||
}
|
}
|
||||||
else {
|
else { // dark
|
||||||
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
|
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -115,13 +115,10 @@ public class TeamMembersByOrgAdapter extends BaseAdapter {
|
|||||||
viewHolder.memberName.setTypeface(myTypeface);
|
viewHolder.memberName.setTypeface(myTypeface);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(tinyDb.getInt("themeId") == 0) { // dark
|
if(tinyDb.getInt("themeId") == 1) { //light
|
||||||
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
|
|
||||||
}
|
|
||||||
else if(tinyDb.getInt("themeId") == 1) { //light
|
|
||||||
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.lightThemeTextColor));
|
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.lightThemeTextColor));
|
||||||
}
|
}
|
||||||
else {
|
else { // dark
|
||||||
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
|
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user