OSDN Git Service

Refactor backup / restore logic to implement multi-threading
[android-x86/packages-apps-Taskbar.git] / app / src / main / java / com / farmerbb / taskbar / activity / AbstractProgressActivity.java
1 /* Copyright 2020 Braden Farmer
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 package com.farmerbb.taskbar.activity;
17
18 import android.app.Activity;
19 import android.os.Bundle;
20
21 import com.farmerbb.taskbar.R;
22
23 public abstract class AbstractProgressActivity extends Activity {
24
25     @Override
26     protected void onCreate(Bundle savedInstanceState) {
27         super.onCreate(savedInstanceState);
28         setContentView(R.layout.tb_import_settings);
29         setFinishOnTouchOutside(false);
30     }
31
32     // Disable back button
33     @Override
34     public void onBackPressed() {}
35 }