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

Help Trouble with Facebook on my Samsung Galaxy Tab E 9.6 Tablet

Are there any options in the Facebook app on your phone that might look like they might be in some way tied to what you're seeing through the app's user interface? If you use a browser app to access your Facebook account does that work out any better?
Keep in mind that your actual Facebook account data is all managed and sourced within Facebook's online servers. It's always a server <<<>>> client matter where your Facebook account 'exists' within Facebook's servers; and what you see in your desktop browser, or your mobile device, or wherever is simply the on the receiving end, the client.

AR emoji

Late to reply to this one.

Startup your camera app, go into the More area and then select AR Emoji. Here you can create and edit them, however if you go into the settings here you can request a app shortcut be created to make it easier to use.

Attachments

  • Screenshot_20200111-222823_AR Emoji.jpg
    Screenshot_20200111-222823_AR Emoji.jpg
    128.4 KB · Views: 169

How to add SQLite rows to an ArrayList<>

Assuming you want to create an Array of Strings, as you've declared

Code:
ArrayList<String> info

then just write

Code:
info.add(check.getString(check.getColumnIndex(TableClass.Name_Column))

Assuming TableClass.Name_Column is a string value.

If you want to create an ArrayList containing objects corresponding to the rows in your database table, then you'll have to create a class that represents all the data fields in that table. E.g.

Code:
class Person {
  private String firstName;
  private String surName;
  private Integer age;
}

then create Person objects using rows retrieved from the database, and declare an ArrayList like this

Code:
ArrayList<Person> people = new ArrayList<>;

android 10 : android.process.media keeps stopping when invoke downloadmanager

Recently I start testing my app in Android 10 (it works fine on the previous version). When I invoke download manager for a file, I got a crash with a message:

android.process.media keeps stopping

This is my snippet code:

String mFilePath = "file://"
+ FileManager.getInstance(getApplicationContext()).getDir()
+ "/"
+ fileName
+ extension;
Uri downloadUri = Uri.parse(fileUrl);
DownloadManager.Request req = new DownloadManager.Request(downloadUri);
DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
dm.enqueue(req);



What's the exact problem?

Apps Getting Bad Request

Hi,

Today i had developer App for Our Website But i am getting One Problem.

Some time using the App i am getting the Below Error

Bad Request

Your browser sent a request that this server could not understand.
Size of a request header filed exceeds server limit

if i clear the app data again it is working and after some time i am getting the above error.

How can i solve this problem ?

i am new to android developement

Thanks
Somu N

Attachments

  • IMG_20200111_183955.jpg
    IMG_20200111_183955.jpg
    317.6 KB · Views: 169

Help Calendar entries made on phone don't sync to O365 on laptop

If your husband has a Fold and it works for him you should be able to use the same setup. So the question is "what is different?", which unfortunately isn't easy to work out remotely.

In general all of the relevant settings should be in one of 2 places: the settings for the calendar app (which I guess is Outlook from your comments) and the settings for the Outlook account (which you should be able to find in the "accounts" section of the phone's settings - if there isn't one then it sounds like the Outlook app is as restricted as it was last time I used it).

Unfortunately I don't use either the Outlook app or a Samsung phone (Samsung change the menus to their own style) so it's hard for me to guess details. I would look at the calendar app's settings, find the settings for events and see which account is set as the default for creating new events. My guess is that that is set to the Yahoo account, in which case setting it to the Outlook account may be all that you need (or specifying the calendar each time you create a new event, but it's better to have a sensible default).

You can sync other calendar apps with Outlook if you install an app that sets up the Outlook account as a general calendar account rather than something specific to the Outlook app (sorry, can't think of a clear way to say what I mean, except that this is what I meant when I blamed the Outlook app if you don't have an Outlook account visible in your settings). MS used to have an app called Outlook.com, and if you synced that with your outlook account you could view and edit the calendar in almost any other calendar app as well. Then they replaced that with the Outlook app and suddenly the calendar wasn't available to any other apps - which is when I ditched that app. I actually use a paid third-party app called Nine to manage my MS accounts, and with that installed I can manage the calendars in any of my other calendar apps as well. But if your husband has a working setup it should be possible to replicate that instead.

Anyway good luck. Changes of platform can take time. Personally I find Android's approach to settings, where you access an app's settings from the app itself, more logical as it's closer to how my computers work (even my Apple computers), but familiarity is the biggest part of things like this. And I always warn people making any change of platform or even OS version, you'll tend to notice the things that don't work the way you expect before you come to understand anything that works better, so initial impressions tend to be negative no matter what change you make.

What is Relevant benchmark values for microSDcard performance?

i have no idea on benchmarks other then the speed of a microsd card. i would also be very cautious when using a sd card as your adoptable storage. since the phone will be reading and writing from the card, you will run the risk of wearing it out faster, the more you use the phone...and thus corrupting the card losing all of your apps data..

there is a reason that samsung decided not have the adoptable storage option on any of their devices. it can potential cause more issues then it is worth IMHO.

Help Bluetooth problems

We definitely see eye to eye, I totally agree with what your saying. Im not familiar with the higher versions but what you mention has been constant with udated levei of the Android os (api's). Just a small example. YThw First is set to off.
Screenshot_2020-01-10-22-44-13.png

the second is displayed by taping 3 dot s top right.
Screenshot_2020-01-10-22-44-18.png


Tap advanced and the third screen. If compare the 1st screen shot with the 3rd screen shot dothis seem contradictory?

If I add a hypothetical rebuttal such as "this is basic" . My response, yes it is. However, consider we are all memberes of "Android" Fotoms. Well of couse its basic to use members of AF. but not necessarily to much of the general population.

Oops I'll edit extra svreen shots. My intention was just 3 imgs

Why can't i connect my note 9 to any bluetooth devices, every time i try it says the name will show when it's connected but it never connect..... so now my bluetooth headphones are pretty much useless :mad:

Did you find a solution for your bluethooth issues?

Attachments

  • Screenshot_2020-01-10-22-45-18.jpg
    Screenshot_2020-01-10-22-45-18.jpg
    118.3 KB · Views: 270

Filter

Back
Top Bottom