mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
Add explicit mention of beta server to login screen (#1102)
* Add explicit mention of beta server to login screen of beta product flavour * Add explicit mention of beta server to login screen of beta product flavour * Add explicit mention of beta server to login screen of beta product flavour * Add explicit mention of beta server to login screen of beta product flavour * Add explicit mention of beta server to login screen of beta product flavour * Add explicit mention of beta server to login screen of beta product flavour
This commit is contained in:
parent
a7a2b51ceb
commit
a52680d646
3 changed files with 25 additions and 2 deletions
|
|
@ -72,6 +72,7 @@ public class LoginActivity extends AccountAuthenticatorActivity {
|
||||||
@BindView(R.id.loginTwoFactor) EditText twoFactorEdit;
|
@BindView(R.id.loginTwoFactor) EditText twoFactorEdit;
|
||||||
@BindView(R.id.error_message_container) ViewGroup errorMessageContainer;
|
@BindView(R.id.error_message_container) ViewGroup errorMessageContainer;
|
||||||
@BindView(R.id.error_message) TextView errorMessage;
|
@BindView(R.id.error_message) TextView errorMessage;
|
||||||
|
@BindView(R.id.login_credentials) TextView loginCredentials;
|
||||||
@BindView(R.id.two_factor_container)TextInputLayout twoFactorContainer;
|
@BindView(R.id.two_factor_container)TextInputLayout twoFactorContainer;
|
||||||
ProgressDialog progressDialog;
|
ProgressDialog progressDialog;
|
||||||
private AppCompatDelegate delegate;
|
private AppCompatDelegate delegate;
|
||||||
|
|
@ -112,6 +113,12 @@ public class LoginActivity extends AccountAuthenticatorActivity {
|
||||||
|
|
||||||
loginButton.setOnClickListener(view -> performLogin());
|
loginButton.setOnClickListener(view -> performLogin());
|
||||||
signupButton.setOnClickListener(view -> signUp());
|
signupButton.setOnClickListener(view -> signUp());
|
||||||
|
|
||||||
|
if(BuildConfig.FLAVOR == "beta"){
|
||||||
|
loginCredentials.setText(getString(R.string.login_credential));
|
||||||
|
} else {
|
||||||
|
loginCredentials.setVisibility(View.GONE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -44,14 +44,29 @@
|
||||||
android:textColor="@android:color/white"
|
android:textColor="@android:color/white"
|
||||||
android:textSize="@dimen/heading_text_size" />
|
android:textSize="@dimen/heading_text_size" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/login_credentials"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_below="@id/title"
|
||||||
|
android:layout_marginEnd="@dimen/standard_gap"
|
||||||
|
android:layout_marginLeft="@dimen/standard_gap"
|
||||||
|
android:layout_marginRight="@dimen/standard_gap"
|
||||||
|
android:layout_marginStart="@dimen/standard_gap"
|
||||||
|
android:paddingBottom="@dimen/small_gap"
|
||||||
|
android:paddingTop="@dimen/small_gap"
|
||||||
|
android:textAlignment="center"
|
||||||
|
android:textColor="@color/secondaryDarkColor"
|
||||||
|
tools:text="@string/login_credential"/>
|
||||||
|
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:id="@+id/error_message_container"
|
android:id="@+id/error_message_container"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/title"
|
android:layout_below="@id/login_credentials"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
tools:visibility="visible">
|
tools:visibility="visible">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/error_message"
|
android:id="@+id/error_message"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
<string name="menu_settings">Settings</string>
|
<string name="menu_settings">Settings</string>
|
||||||
<string name="username">Username</string>
|
<string name="username">Username</string>
|
||||||
<string name="password">Password</string>
|
<string name="password">Password</string>
|
||||||
|
<string name="login_credential">Log in to your Commons Beta account</string>
|
||||||
<string name="login">Log in</string>
|
<string name="login">Log in</string>
|
||||||
<string name="signup">Sign up</string>
|
<string name="signup">Sign up</string>
|
||||||
<string name="logging_in_title">Logging in</string>
|
<string name="logging_in_title">Logging in</string>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue