AndroidAPS/app/src/main/java/info/nightscout/androidaps/startupwizard/SetupWizardActivity.java

262 lines
9.5 KiB
Java
Raw Normal View History

2018-04-20 17:27:31 +02:00
package info.nightscout.androidaps.startupwizard;
import android.annotation.SuppressLint;
2018-04-23 16:03:22 +02:00
import android.content.Intent;
2018-04-20 17:27:31 +02:00
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.os.Handler;
import android.view.MotionEvent;
import android.view.View;
2018-04-23 14:58:27 +02:00
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;
2018-04-25 10:03:33 +02:00
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.text.NumberFormat;
2018-04-25 14:29:20 +02:00
import java.util.ArrayList;
2018-04-23 14:58:27 +02:00
import java.util.List;
2018-04-20 17:27:31 +02:00
import info.nightscout.androidaps.R;
2018-04-23 14:58:27 +02:00
import static info.nightscout.androidaps.startupwizard.SWItem.Type.RADIOBUTTON;
import static info.nightscout.androidaps.startupwizard.SWItem.Type.STRING;
import static info.nightscout.androidaps.startupwizard.SWItem.Type.URL;
2018-04-20 17:27:31 +02:00
/**
* An example full-screen activity that shows and hides the system UI (i.e.
* status bar and navigation/system bar) with user interaction.
*/
public class SetupWizardActivity extends AppCompatActivity {
/**
* Whether or not the system UI should be auto-hidden after
* {@link #AUTO_HIDE_DELAY_MILLIS} milliseconds.
*/
private static final boolean AUTO_HIDE = true;
/**
* If {@link #AUTO_HIDE} is set, the number of milliseconds to wait after
* user interaction before hiding the system UI.
*/
private static final int AUTO_HIDE_DELAY_MILLIS = 3000;
/**
* Some older devices needs a small delay between UI widget updates
* and a change of the status and navigation bar.
*/
private static final int UI_ANIMATION_DELAY = 300;
private final Handler mHideHandler = new Handler();
private View mContentView;
2018-04-23 14:58:27 +02:00
private LinearLayout linearLayout;
private TextView radioLabel;
2018-04-25 10:03:33 +02:00
private int numberOfButtons = 0;
2018-04-25 14:29:20 +02:00
private List<String> labels = new ArrayList<String>();
private List<String> comments = new ArrayList<String>();
2018-04-25 10:03:33 +02:00
private LinearLayout layout;
private TextView textlabel;
2018-04-23 14:58:27 +02:00
private TextView screenName;
private Button skipButton;
2018-04-25 10:03:33 +02:00
//logiing
private static Logger log = LoggerFactory.getLogger(SetupWizardActivity.class);
2018-04-25 14:29:20 +02:00
private int currentWizardPage = 0;
2018-04-23 16:03:22 +02:00
public static final String INTENT_MESSAGE = "WIZZARDPAGE";
2018-04-20 17:27:31 +02:00
private final Runnable mHidePart2Runnable = new Runnable() {
@SuppressLint("InlinedApi")
@Override
public void run() {
// Delayed removal of status and navigation bar
// Note that some of these constants are new as of API 16 (Jelly Bean)
// and API 19 (KitKat). It is safe to use them, as they are inlined
// at compile-time and do nothing on earlier devices.
mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE
| View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
}
};
private View mControlsView;
private final Runnable mShowPart2Runnable = new Runnable() {
@Override
public void run() {
// Delayed display of UI elements
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.show();
}
mControlsView.setVisibility(View.VISIBLE);
}
};
private boolean mVisible;
private final Runnable mHideRunnable = new Runnable() {
@Override
public void run() {
hide();
}
};
/**
* Touch listener to use for in-layout UI controls to delay hiding the
* system UI. This is to prevent the jarring behavior of controls going away
* while interacting with activity UI.
*/
private final View.OnTouchListener mDelayHideTouchListener = new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
if (AUTO_HIDE) {
delayedHide(AUTO_HIDE_DELAY_MILLIS);
}
return false;
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_setupwizard);
mVisible = true;
mControlsView = findViewById(R.id.fullscreen_content_controls);
mContentView = findViewById(R.id.fullscreen_content);
// Set up the user interaction to manually show or hide the system UI.
mContentView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
toggle();
}
});
2018-04-23 14:58:27 +02:00
2018-04-23 16:03:22 +02:00
Intent intent = getIntent();
int showPage = intent.getIntExtra(SetupWizardActivity.INTENT_MESSAGE,0);
2018-04-23 14:58:27 +02:00
SWDefinition swDefinition = SWDefinition.getInstance();
List<SWScreen> screens = swDefinition.getScreens();
if(screens.size() > 0){
2018-04-23 16:03:22 +02:00
SWScreen currentScreen = screens.get(showPage);
// show/hide prev/next buttons if we are at the beninning/end
if(showPage == screens.size() - 1) {
((Button) findViewById(R.id.next_button)).setVisibility(View.GONE);
((Button) findViewById(R.id.finish_button)).setVisibility(View.VISIBLE);
}else if(showPage == 0)
((Button) findViewById(R.id.previous_button)).setVisibility(View.GONE);
2018-04-23 14:58:27 +02:00
//Set screen name
screenName = (TextView) findViewById(R.id.fullscreen_content);
screenName.setText(currentScreen.getHeader());
//Display screen items in the order entered
linearLayout = (LinearLayout) findViewById(R.id.fullscreen_content_controls);
// is it skippable ?
if(currentScreen.skippable) {
//display skip button
skipButton = (Button) findViewById(R.id.skip_button);
}
for(int i = 0; i < currentScreen.items.size(); i++){
SWItem currentItem = currentScreen.items.get(i);
2018-04-25 14:29:20 +02:00
if(currentItem.type == URL || currentItem.type == STRING){
labels.add(currentItem.getLabel());
comments.add(currentItem.getComment());
2018-04-23 14:58:27 +02:00
} else if(currentItem.type == RADIOBUTTON){
2018-04-25 10:03:33 +02:00
// generate layout dynamically
2018-04-23 14:58:27 +02:00
SWRadioButton radioGroupItems = (SWRadioButton) currentItem;
2018-04-25 14:29:20 +02:00
radioGroupItems.setName(currentScreen.getHeader());
radioGroupItems.setOptions(radioGroupItems.labels(), radioGroupItems.values());
radioGroupItems.show(this.findViewById(R.id.fullscreen_content_fields));
}
if(labels.size() > 0){
// we have some labels lets display them
SWUrl swUrl = new SWUrl();
swUrl.setName(currentScreen.getHeader());
swUrl.setOptions(labels, comments);
swUrl.show(this.findViewById(R.id.fullscreen_content_fields));
2018-04-23 14:58:27 +02:00
}
}
}
2018-04-20 17:27:31 +02:00
// Upon interacting with UI controls, delay any scheduled hide()
// operations to prevent the jarring behavior of controls going away
// while interacting with the UI.
2018-04-23 14:58:27 +02:00
findViewById(R.id.next_button).setOnTouchListener(mDelayHideTouchListener);
2018-04-20 17:27:31 +02:00
}
@Override
protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
// Trigger the initial hide() shortly after the activity has been
// created, to briefly hint to the user that UI controls
// are available.
delayedHide(100);
}
private void toggle() {
if (mVisible) {
hide();
} else {
show();
}
}
private void hide() {
// Hide UI first
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.hide();
}
mControlsView.setVisibility(View.GONE);
mVisible = false;
// Schedule a runnable to remove the status and navigation bar after a delay
mHideHandler.removeCallbacks(mShowPart2Runnable);
mHideHandler.postDelayed(mHidePart2Runnable, UI_ANIMATION_DELAY);
}
@SuppressLint("InlinedApi")
private void show() {
// Show the system bar
mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
mVisible = true;
// Schedule a runnable to display UI elements after a delay
mHideHandler.removeCallbacks(mHidePart2Runnable);
mHideHandler.postDelayed(mShowPart2Runnable, UI_ANIMATION_DELAY);
}
/**
* Schedules a call to hide() in delay milliseconds, canceling any
* previously scheduled calls.
*/
private void delayedHide(int delayMillis) {
mHideHandler.removeCallbacks(mHideRunnable);
mHideHandler.postDelayed(mHideRunnable, delayMillis);
}
2018-04-23 14:58:27 +02:00
2018-04-25 10:03:33 +02:00
2018-04-23 14:58:27 +02:00
2018-04-23 16:03:22 +02:00
public void showNextPage(View view) {
Intent intent = new Intent(this, SetupWizardActivity.class);
2018-04-25 14:29:20 +02:00
intent.putExtra(INTENT_MESSAGE, currentWizardPage + 1);
2018-04-23 16:03:22 +02:00
startActivity(intent);
}
public void showPreviousPage(View view) {
Intent intent = new Intent(this, SetupWizardActivity.class);
2018-04-25 14:29:20 +02:00
if(currentWizardPage > 0)
intent.putExtra(INTENT_MESSAGE, currentWizardPage - 1);
2018-04-23 16:03:22 +02:00
else
intent.putExtra(INTENT_MESSAGE, 0);
startActivity(intent);
}
2018-04-20 17:27:31 +02:00
}