mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 13:23:58 +01:00
* Update WelcomeActivity.java Now it starts welcome screen after not finishing the pager. Moved "Skip Tutorial" button here so it does not animate by swipe. * Update activity_welcome.xml Putting "Skip Tutorial" button here so that it does not animate by swipes. * Update LoginActivity.java Removing the set of "first run " flag from here. we set it after the buttons press or on WelcomeActivity's finish() * Update welcome_do_upload.xml removing "skip tut" button from here. * Update welcome_dont_upload.xml Removing "Skip Tutorial" button from here so that it does not animate by swipes. * Update welcome_image_details.xml Removing "Skip Tutorial" button from here so that it does not animate by swipes. * Update welcome_wikipedia.xml Removing "Skip Tutorial" button from here so that it does not animate by swipes. * Update WelcomePagerAdapter.java the "welcomyesButton" is removed from the child views in pager, so it is optional now. * Add JavaDoc to WelcomeActivity.onBackPressed() * Fix #2103: Remove welcomeYesButton from landscape layout * Refactor WelcomePagerAdapter
35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/primaryColor">
|
|
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/welcomePager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fadingEdge="none" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/overflow_button_dimen"
|
|
android:layout_marginTop="@dimen/standard_gap"
|
|
android:layout_marginRight="@dimen/standard_gap"
|
|
android:text="@string/welcome_skip_button"
|
|
android:id="@+id/finishTutorialButton"
|
|
android:textSize="@dimen/normal_text"
|
|
android:layout_gravity="right"
|
|
android:layout_alignParentRight="true"
|
|
android:textColor="#fff"
|
|
android:textStyle="bold"
|
|
android:visibility="gone"
|
|
/>
|
|
|
|
<com.viewpagerindicator.CirclePageIndicator
|
|
android:id="@+id/welcomePagerIndicator"
|
|
android:layout_height="@dimen/half_standard_height"
|
|
android:layout_width="match_parent"
|
|
android:layout_gravity="bottom"
|
|
android:padding="5dp" />
|
|
|
|
</FrameLayout>
|