[android-developers] Font can't be found in assets/fonts

2016-01-21 Thread NuffsaidM8
I have a font file (.ttf) in the fonts directory inside the assets folder. Proof:

[android-developers] After signing app, what APK file can my phone use?

2016-01-19 Thread NuffsaidM8
I just learned about signing a finished app. I want to know how I could get this app onto my phone. I understand that it is an APK file that should be put on the phone, but I'm not sure which one. The output lead me to a folder title "app" in which there is an apk file directly in sight called

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
As soon as I last posted I figured out what you meant and fixed the issue. Thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsu

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I retract my former statement about not understanding the passing data. I have found a solution. Thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to a

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
In addition, your theory about the activity being created too late is correct. I set a log statement in the onCreate method of the activity and this message was displayed to me. The message from the receiver in that class though was not displayed. The creation message was displayed after the me

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I apologize for not taking the time to work out my issues all myself. I'm a little out of my league here and am on a tight schedule. I am still slightly confused about a few things, such as: Why do I need to pass data through to the activity? All I want to do right now is start it up so that wh

[android-developers] Re: Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I am on a tight schedule here, so I apologize that I haven't spent a ton of time trying to work out the issue. I am confused by what you mean with passing extra data. What would I use it for and how would that help my activity finish up first? -- You received this message because you are subsc

Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I did the receiver with only code, that's correct. What do you mean that I need to start the activity? I thought that was what I was doing. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving

[android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I have a broadcast receiver that is detecting a boot up of the phone. This part works fine. What I want to do is send a notification to a broadcast receiver in the Main Activity of the app, which is registered in the onCreate method as having an intent filter of "RESET_ALARM". This is what does