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

Hotspot/tethering problem

I fixed it for anyone else that needs to know... attached link is a screenshot of someone else's android that had the same problem, look at what they entered into the APN type and try changing yours to that:
1.Settings
2.>Connections
3.>Mobile networks
4.>Access Point Names
5.>tap your access point name that is activated currently (mine was: "Vodafone Live!")
6.>scroll down to APN type and paste this: default,supl,agps,fota,dun,hipri

Attachments

  • Screenshot_20190327-191627.png
    Screenshot_20190327-191627.png
    96.2 KB · Views: 998

Apps HTML APP conflict with office suite

Hi every one on this forum hope you all are doing well i need little help i have html based android app which was working fine before i installed officesuite now when i open the app and click on any button it opened by officesuite and then there i get error file not found (android_asset/index.html) so is there any solution for it to avoide officesuite to take over and read the html files form my app?
Thanks.

Stop more notifications from same app after one notification

Hi there, @garlor, and welcome to Android Forums! :)
very simple, I get a yourchoiceofapp notificacion, don't want another yourchoiceofapp notification for next x minutes

any way to do this?
I'm not making any guarantees, but Tasker may be able to do this.

Although I have Tasker, I've never actually used it. But a quick glance in it makes me think your issue may be doable with it.

I don't know of any built-in system method to do what you're after.

Hopefully, others will chime in with their ideas/knowledge.

Google activity

Welcome to Android Forums, Alyssarenfroe0211! :)
Why does my Google activity show Google play store, but when i click on it, it says item not found.
Can you be a little more specific? Generally, when you click on a Play Store link for an app that's no longer in the Play Store, you'll see that 'item not found' message. But your description doesn't match up with that.

Please tell us the exact steps you're taking; screenshots would help.

Samsung S10 5G Quick Decline Messages options not showing for calls

NO, I see "Send Message" - but my quick decline messages are not listed. When I select "Send Message", I only see 2 options: "Set a reminder" or "Write a Message" - which would be a new message

My previous Samsung Galaxy S8+ would display my "quick decline messages" here. I can assure you that I have set these up in the phone. They are just not displaying as an option when I receive calls and have to manually type a decline text. Please help.

Verizon may sell OnePlus phones

How's the UI on the OnePlus? I like vanilla Android, a lot. Is it that much different (like Samsung)?
The global model's OnePlus UI is pretty darn close to stock Android. Much more so than, say, Samsung or even EMUI. So close is it, that OnePlus have been known to issue global updates on a par with Google or within a few days. The T-Mobile (USA) carrier minority variant is still in the Dark Ages. ;)

Tethering Connected...

I hook my phone up to my laptop via USB tethering and it says it's connected but I can't surf the web. I hooked it up yesterday and it worked fine does anybody know if MetroPCS has a limit to how long their tethering works or any possibility of getting me back online? And a side question... My laptop has a 2-in-1 Bluetooth/Wifi card... It detects that there is a Bluetooth device nearby, says it's paired doesn't actually pair? And the WiFi part of the card is not detected at all? Can it go out piece by piece?

Emulator Malfunction

For a month now I've not been able to get a proper function from my emulator. Here's a group of error messages I get today in the Event log:


Code (Text):
  1. 9/17/2019
  2. 6:03 AM * daemon not running; starting now at tcp:5037

  3. 6:03 AM * daemon started successfully

  4. 6:03 AM Gradle sync started with single-variant sync

  5. 6:03 AM Project setup started

  6. 6:03 AM Gradle sync finished in 3 s 989 ms (from cached state)

  7. 6:04 AM Executing tasks: [:app:generateDebugSources] in project C:\Users\Shelby\AndroidStudioProjects\JavaArrays

  8. 6:04 AM NDK Resolution Outcome: Project settings: Gradle model version=5.4.1, NDK version is UNKNOWN

  9. 6:04 AM Gradle build finished in 30 s 252 ms

  10. 6:08 AM Executing tasks: [:app:assembleDebug] in project C:\Users\Shelby\AndroidStudioProjects\JavaArrays

  11. 6:08 AM Emulator: dsound: Could not initialize DirectSoundCapture

  12. 6:08 AM Emulator: dsound: Reason: No sound driver is available for use, or the given GUID is not a valid DirectSound device ID

  13. 6:08 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object

  14. 6:08 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object

  15. 6:08 AM Emulator: audio: Failed to create voice `goldfish_audio_in'

  16. 6:08 AM Emulator: C:\Users\Shelby\AppData\Local\Android\Sdk\emulator\qemu\windows-x86_64\qemu-system-x86_64.exe: warning: opening audio input failed

  17. 6:08 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object

  18. 6:08 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object

  19. 6:08 AM Emulator: audio: Failed to create voice `adc'

  20. 6:08 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object

  21. 6:08 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object

  22. 6:08 AM Emulator: audio: Failed to create voice `adc'

  23. 6:09 AM Gradle build finished in 17 s 347 ms

  24. 6:09 AM Install successfully finished in 566 ms.: App restart successful without requiring a re-install.

  25. 6:09 AM Executing tasks: [:app:assembleDebug] in project C:\Users\Shelby\AndroidStudioProjects\JavaArrays

  26. 6:09 AM Gradle build finished in 3 s 339 ms

  27. 6:09 AM Install successfully finished in 667 ms.: App restart successful without requiring a re-install.
Here's the entire project which I am building from an android classroom from udemy.com by my instructor .

Code (Text):
  1. package com.swayzeconstruction.javaarrays;

  2. public class Main {
  3. public static void main(String[] args) {
  4. String[] names = new String[5];
  5. names[0] = "Shelby";
  6. names[1] = "Jaam";
  7. names[2] = "Bisous";
  8. names[3] = "Felix";
  9. names[4] = "Hadi";

  10. System.out.println(names[3]);
  11. int[] numbers = new int[5]; //apparently gives all values of array
  12. //or the following
  13. }

  14. {
  15. String[] names2 = new String[5];
  16. System.out.println(names2[2]); //gives second value of array
  17. // or the following
  18. }

  19. {
  20. String[] names3 = new String[5];
  21. {
  22. System.out.println(names3[2]);
  23. int[] numbers = {1, 2, 3, 4, 5}; //note: using curly braces
  24. System.out.println(numbers[1]); // to get second element
  25. }

  26. }
  27. }
Any ideas? Thanks

Filter

Back
Top Bottom