mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-22 04:29:22 +01:00
Small changes.
This commit is contained in:
parent
1ae2994045
commit
0958e12a53
1 changed files with 5 additions and 6 deletions
|
@ -1,7 +1,6 @@
|
||||||
package net.foucry.pilldroid;
|
package net.foucry.pilldroid;
|
||||||
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.res.Resources;
|
|
||||||
import android.graphics.Color;
|
import android.graphics.Color;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
|
@ -30,7 +29,7 @@ public class WelcomeActivity extends AppCompatActivity {
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
Boolean DEBUG = false;
|
boolean DEBUG = false;
|
||||||
|
|
||||||
// Checking for first time launch - before calling setContentView()
|
// Checking for first time launch - before calling setContentView()
|
||||||
prefManager = new PrefManager(this);
|
prefManager = new PrefManager(this);
|
||||||
|
@ -47,10 +46,10 @@ public class WelcomeActivity extends AppCompatActivity {
|
||||||
|
|
||||||
setContentView(R.layout.activity_welcome);
|
setContentView(R.layout.activity_welcome);
|
||||||
|
|
||||||
viewPager = findViewById(R.id.view_pager);
|
viewPager = findViewById(R.id.view_pager);
|
||||||
dotsLayout = findViewById(R.id.layoutDots);
|
dotsLayout = findViewById(R.id.layoutDots);
|
||||||
btnSkip = findViewById(R.id.btn_skip);
|
btnSkip = findViewById(R.id.btn_skip);
|
||||||
btnNext = findViewById(R.id.btn_next);
|
btnNext = findViewById(R.id.btn_next);
|
||||||
|
|
||||||
|
|
||||||
// layouts of all welcome sliders
|
// layouts of all welcome sliders
|
||||||
|
|
Loading…
Reference in a new issue