• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

intent

  1. M

    Android Intent help for login redirection

    Hey all :) Im trying to add an intent to my java code in order for login/register to be redirected to Main Activity. Have seen examples of intent around the web but unsure of how to add one within my code without messing it up. Does anyone know how to do so? Thank ya:love:
  2. G

    ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy

    signin.java package com.example.library; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.text.TextUtils; import android.util.Patterns; import android.view.View; import android.view.WindowManager; import android.widget.EditText...
  3. A

    Apps Android Service With Wake Lock and Intent Redelivery Still Gets Killed When Screen Turns off

    I created a service that is supposed to run in the background on a button press and stop on a button press. It's started from a fragment and not an Activity. I can get it to start and run while the screen is on, but the moment my screen turns off, its onDestroy method is called and stops itself...