diff -r 000000000000 -r 6474c204b198 mobile/android/base/fxa/activities/FxAccountCreateAccountNotAllowedActivity.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mobile/android/base/fxa/activities/FxAccountCreateAccountNotAllowedActivity.java Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,36 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +package org.mozilla.gecko.fxa.activities; + +import org.mozilla.gecko.R; +import org.mozilla.gecko.background.common.log.Logger; +import org.mozilla.gecko.sync.setup.activities.ActivityUtils; + +import android.os.Bundle; +import android.widget.TextView; + +/** + * Activity which displays sign up/sign in screen to the user. + */ +public class FxAccountCreateAccountNotAllowedActivity extends FxAccountAbstractActivity { + protected static final String LOG_TAG = FxAccountCreateAccountNotAllowedActivity.class.getSimpleName(); + + public FxAccountCreateAccountNotAllowedActivity() { + super(CANNOT_RESUME_WHEN_ACCOUNTS_EXIST); + } + + /** + * {@inheritDoc} + */ + @Override + public void onCreate(Bundle icicle) { + Logger.debug(LOG_TAG, "onCreate(" + icicle + ")"); + + super.onCreate(icicle); + setContentView(R.layout.fxaccount_create_account_not_allowed); + TextView view = (TextView) findViewById(R.id.learn_more_link); + ActivityUtils.linkTextView(view, R.string.fxaccount_account_create_not_allowed_learn_more, R.string.fxaccount_link_create_not_allowed); + } +}