Skip to content
This repository has been archived by the owner on Aug 21, 2018. It is now read-only.

Commit

Permalink
Dashboard (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
leomaxi authored Jan 25, 2018
1 parent f164e2f commit 448576b
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.ole.learning.planet.planetlearning;

import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.DialogInterface;
Expand Down Expand Up @@ -84,7 +85,7 @@
* status bar and navigation/system bar) with user interaction.
*/
@SuppressWarnings("ALL")
public class FullscreenLogin extends AppCompatActivity {
public class FullscreenLogin extends Activity {
private View mContentView;
private static final int REQUEST_READ_CONTACTS = 0;
public static final String PREFS_NAME = "MyPrefsFile";
Expand Down Expand Up @@ -136,8 +137,8 @@ protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.new_activity_login);
mContentView = findViewById(R.id.fullscreen_content2);
final ActionBar actionBar = getSupportActionBar();
actionBar.hide();
//final ActionBar actionBar = getSupportActionBar();
//actionBar.hide();
androidContext = new AndroidContext(this);
// Todo - : Decide on either to clear resource database and file storage anytime user syncs or rather keep old resources only if user doesn't change server url
mUsername = (EditText) mContentView.findViewById(R.id.txtUsername);
Expand Down

0 comments on commit 448576b

Please sign in to comment.