This repository has been archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Release 5.0.0 App Navigation Issues (#1826)
fix: Release 5.0.0 app navigation issues - Facebook Authentication - Register screen error layout - Highlighted fields of Course Dashboard - WebView scrolling issue within CoordinatorLayout - Introduce NestedScrollWebView to resolve scrolling problems when using WebView within a CoordinatorLayout. - Organisation name visibility on expended toolbar on CourseDashboard - Shift date snackbar reappears on screen rotation - play the first video on the subsection click from the videos tab - Bulk Download Warning Popup - YouTube videos and flying messages - Update firebaseRemoteConfig configurations - Add screen for unsupported subsections instated of the first component - `CourseUnitNavigationActivity` code improvements - fullscreen for YouTube video with minor code improvements --------- Co-authored-by: Farhan Arshad <[email protected]> Co-authored-by: Omer Habib <[email protected]> fixes: LEARNER-9625
- Loading branch information
1 parent
9882175
commit 6ef292f
Showing
25 changed files
with
337 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 3 additions & 14 deletions
17
OpenEdXMobile/res/layout/activity_course_tabs_dashboard.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<layout xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<FrameLayout | ||
<androidx.fragment.app.FragmentContainerView | ||
android:id="@+id/fragment_container_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
<androidx.fragment.app.FragmentContainerView | ||
android:id="@+id/fragment_container_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" /> | ||
|
||
<TextView | ||
android:id="@+id/flying_message" | ||
style="@style/flying_message" | ||
android:visibility="gone" /> | ||
|
||
</FrameLayout> | ||
android:layout_height="match_parent" /> | ||
</layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
OpenEdXMobile/res/layout/layout_component_not_available.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:id="@+id/container_layout_not_available" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@color/white" | ||
android:gravity="center" | ||
android:orientation="vertical"> | ||
|
||
<androidx.appcompat.widget.AppCompatImageView | ||
android:id="@+id/content_error_icon" | ||
android:layout_width="@dimen/unit_unavailable_error_icon_size" | ||
android:layout_height="@dimen/unit_unavailable_error_icon_size" | ||
android:layout_margin="@dimen/widget_margin_double" | ||
app:srcCompat="@drawable/ic_laptop" | ||
app:tint="@color/neutralXXDark" /> | ||
|
||
<TextView | ||
android:id="@+id/not_available_message" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginStart="@dimen/edx_quadruple_margin" | ||
android:layout_marginEnd="@dimen/edx_quadruple_margin" | ||
android:layout_marginBottom="@dimen/widget_margin_double" | ||
android:gravity="center" | ||
android:singleLine="false" | ||
android:textAlignment="center" | ||
android:textColor="@color/black" | ||
android:textSize="@dimen/edx_base" | ||
tools:text="@string/assessment_not_available" /> | ||
|
||
<TextView | ||
android:id="@+id/not_available_message_2" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginStart="@dimen/edx_quadruple_margin" | ||
android:layout_marginEnd="@dimen/edx_quadruple_margin" | ||
android:layout_marginBottom="@dimen/widget_margin_double" | ||
android:gravity="center" | ||
android:singleLine="false" | ||
android:text="@string/assessment_explore_on_web" | ||
android:textAlignment="center" | ||
android:textColor="@color/black" | ||
android:textSize="@dimen/edx_base" /> | ||
|
||
<androidx.appcompat.widget.AppCompatButton | ||
android:id="@+id/view_on_web_button" | ||
style="@style/edX.Widget.SecondaryActionButton" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="@dimen/widget_margin_double" | ||
android:text="@string/assessment_view_on_web" /> | ||
|
||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.