* Remove unused imports * Fix a few line length issues * Convert a few anonymous classes to lambda expressions * Convert a few global vars to locals * Remove unused methods * Add a small local method in MobileDataActivity to shorten repeated calls Change-Id: Ia10be8b8c98ef3956949f913ddb6bddc185cf1a5
65 lines
1.9 KiB
Java
65 lines
1.9 KiB
Java
/*
|
|
* Copyright (C) 2016 The CyanogenMod Project
|
|
* Copyright (C) 2017 The LineageOS 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 org.lineageos.setupwizard;
|
|
|
|
import android.os.Bundle;
|
|
import android.view.MotionEvent;
|
|
import android.view.View;
|
|
|
|
import org.lineageos.setupwizard.util.EnableAccessibilityController;
|
|
|
|
public class WelcomeActivity extends BaseSetupWizardActivity {
|
|
|
|
public static final String TAG = WelcomeActivity.class.getSimpleName();
|
|
|
|
private View mRootView;
|
|
private EnableAccessibilityController mEnableAccessibilityController;
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
mRootView = findViewById(R.id.root);
|
|
setNextText(R.string.next);
|
|
setBackText(R.string.emergency_call);
|
|
setBackDrawable(null);
|
|
mEnableAccessibilityController =
|
|
EnableAccessibilityController.getInstance(getApplicationContext());
|
|
mRootView.setOnTouchListener((v, event) ->
|
|
mEnableAccessibilityController.onTouchEvent(event));
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onBackPressed() {}
|
|
|
|
@Override
|
|
public void onNavigateBack() {
|
|
startEmergencyDialer();
|
|
}
|
|
|
|
@Override
|
|
protected int getTransition() {
|
|
return TRANSITION_ID_SLIDE;
|
|
}
|
|
|
|
@Override
|
|
protected int getLayoutResId() {
|
|
return R.layout.welcome_activity;
|
|
}
|
|
}
|