Skip to content

Commit

Permalink
1.4.9 updated
Browse files Browse the repository at this point in the history
  • Loading branch information
PranshulGG committed Aug 23, 2024
1 parent f0d689b commit bc7cb28
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/assets/ui-files/ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -1875,7 +1875,7 @@ savelocationtouch md-ripple{
.new_ver_download{
position: fixed;
bottom: 0;
z-index: 999;
z-index: 99999999;
display: flex;
align-items: center;
justify-content: space-between;
Expand Down
9 changes: 9 additions & 0 deletions app/src/main/java/com/example/weathermaster/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,9 @@ public void run() {
} else if (color.equals("OpenMoonPhasesPage")){
OpenMoonPhasesPage();
return;
} else if (color.equals("OpenAboutPage")){
openAboutPage();
return;
} else if (color.equals("GoBack")){
back();
return;
Expand All @@ -379,6 +382,7 @@ public void run() {
return;



} else {
Toast.makeText(mActivity, "not found", Toast.LENGTH_SHORT).show();
return;
Expand Down Expand Up @@ -439,6 +443,11 @@ public void OpenMoonPhasesPage(){
Intent intent = new Intent(mActivity, MoonPhases.class);
mActivity.startActivity(intent);
}
public void openAboutPage() {
Intent intent = new Intent(mActivity, AboutPage.class);
mActivity.startActivity(intent);
}

}

public void back() {
Expand Down

0 comments on commit bc7cb28

Please sign in to comment.