blob: dc5dde19d430079af299d7b3a03a8c9e0d82dc5d [file] [log] [blame]
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.android.autofill.app.antipatterns;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.autofill.AutofillManager;
import com.example.android.autofill.app.R;
/**
* This activity is the first step in a multi-screen login workflow that uses 2 distinct activities
* for username and password, which causes 2 Autofill Save UI to be shown.
*
* <p>This is a bad pattern anyways&mdash;apps should use Fragments in such scenarios.
*/
/*
* TODO list
* - use ConstraintLayout
* - use strings.xml insteaf of hardcoded strings
* - add icon with information
* - extend AppCompatActivity
*/
public class UsernameOnlyActivity extends Activity {
@Override
protected void onStart() {
super.onStart();
setContentView(R.layout.username_only_activity);
findViewById(R.id.next).setOnClickListener((v) -> next());
}
private void next() {
startActivity(new Intent(this, PasswordOnlyActivity.class));
finish();
}
}