Skip to content

Commit

Permalink
Fixed radar/forecast page
Browse files Browse the repository at this point in the history
  • Loading branch information
evilbunny2008 committed Jan 19, 2023
1 parent 4c495fd commit 076053e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 20 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "com.odiousapps.weewxweather"
minSdkVersion 23
targetSdkVersion 33
versionCode 1000011
versionName "1.0.11"
versionCode 1000012
versionName "1.0.12"
}

buildTypes {
Expand Down
13 changes: 4 additions & 9 deletions app/src/main/res/layout/fragment_forecast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,10 @@
android:gravity="center"/>
</com.odiousapps.weewxweather.RotateLayout>

<androidx.core.widget.NestedScrollView
<WebView
android:id="@+id/webView2"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/webView2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:visibility="gone"/>
</androidx.core.widget.NestedScrollView>
android:layout_height="match_parent"
android:visibility="gone" />
</LinearLayout>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
13 changes: 4 additions & 9 deletions app/src/main/res/layout/fragment_weather.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,9 @@
android:layout_height="wrap_content"
android:nestedScrollingEnabled="true" />

<androidx.core.widget.NestedScrollView
android:layout_height="match_parent"
android:layout_width="match_parent">

<WebView
android:id="@+id/forecast"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</androidx.core.widget.NestedScrollView>
<WebView
android:id="@+id/forecast"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>

0 comments on commit 076053e

Please sign in to comment.