You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
940 B
36 lines
940 B
package htdinc.howtodrink.display;
|
|
|
|
import android.annotation.SuppressLint;
|
|
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;
|
|
|
|
import htdinc.howtodrink.R;
|
|
|
|
/**
|
|
* 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 Container extends AppCompatActivity {
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_container);
|
|
|
|
|
|
}
|
|
|
|
}
|