Theme and Icons #260

Merged
mmarif merged 15 commits from light-theme into master 2020-03-08 13:52:34 +00:00
4 changed files with 7 additions and 19 deletions
Showing only changes of commit 900b060c31 - Show all commits

View File

@ -17,10 +17,7 @@ public abstract class BaseActivity extends AppCompatActivity {
final TinyDB tinyDb = new TinyDB(getApplicationContext());
if(tinyDb.getInt("themeId") == 0) {
setTheme(R.style.AppTheme);
}
else if(tinyDb.getInt("themeId") == 1) {
if(tinyDb.getInt("themeId") == 1) {
Outdated
Review

can you test for == 1 and else set default theme?

can you test for == 1 and else set default theme?

Yes, that will work too.

Yes, that will work too.
setTheme(R.style.AppThemeLight);
}
else {

View File

@ -114,13 +114,10 @@ public class RepoStargazersAdapter extends BaseAdapter {
viewHolder.memberName.setTypeface(myTypeface);
}
if(tinyDb.getInt("themeId") == 0) { // dark
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
}
else if(tinyDb.getInt("themeId") == 1) { //light
if(tinyDb.getInt("themeId") == 1) { //light
Outdated
Review

same as first comment - why not make if (is light) [else if (is other theme - not here jet)] else default -> dark theme

same as first comment - why not make if (is light) [else if (is other theme - not here jet)] else default -> dark theme

Yup, you are right.

Yup, you are right.
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.lightThemeTextColor));
}
else {
else { // dark
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
}

View File

@ -114,13 +114,10 @@ public class RepoWatchersAdapter extends BaseAdapter {
viewHolder.memberName.setTypeface(myTypeface);
}
if(tinyDb.getInt("themeId") == 0) { // dark
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
}
else if(tinyDb.getInt("themeId") == 1) { //light
if(tinyDb.getInt("themeId") == 1) { //light
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.lightThemeTextColor));
}
else {
else { // dark
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
}

View File

@ -115,13 +115,10 @@ public class TeamMembersByOrgAdapter extends BaseAdapter {
viewHolder.memberName.setTypeface(myTypeface);
}
if(tinyDb.getInt("themeId") == 0) { // dark
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
}
else if(tinyDb.getInt("themeId") == 1) { //light
if(tinyDb.getInt("themeId") == 1) { //light
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.lightThemeTextColor));
}
else {
else { // dark
viewHolder.memberName.setTextColor(mCtx.getResources().getColor(R.color.white));
}