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

Wi-Fi Calling

Hello everyone, I'm new here & am; posting for the first time.
Question: Does anyone know of a way that I can use my 'Owned' Wi-Fi Signàl to Enable Wi-Fi Calling on my 'Owned' Phone? Thanks
Explanation: I haven't got Cell Service inside my house. The only way for me to be able to Make &; Receive Phone Calls is through Wi-Fi Calling. My phone is what AT&T calls a 'Branded' phone, since I ordered it from 'Best Buy' & not from them. Well for that reason they won't enable WiFi Calling on my S9+.

trying to unlock bootloader but drivers problem?

hello guys.im trying to install twrp in my device j7 2016(sm-j710f) i have android 8.1 oreo.when i flash twrp odin says pass and i open my phone but there is the stock recovery.i read somewhere that it is because bootloader is locked.im trying to unlock bootloader via adb but in fastboot commands i get waiting for device.i have searched on the internet but nothing was working for me because when i go to the bootloader mode my phone isnt shown on device manager on pc while it makes the sound of a connected device.any ideas and another way to unlock bootloader? thanks

Help Samsung S10 (G973U1) No 4G?

So...long story (as much as I can make it) short:

Wanted an S10, could get it in Dubai the Exynos version for around 500bucks, decided instead to go all over to NJ (USA) and get it from a notorious chain store retailer (BB) spending 850 bucks total (including tax).

350bucks more than what I could have spent just to get my hands on the Snapdragon version...

...back in Dubai I plug my simcard in, turn it on, and bang: No damn 4G signal...it only goes LTE...

Now it is the phone for sure as my old S8 (which I still have) goes 4G+ (same phone carrier) without problems...and speed tests are obviously faster than this freaking LTE...

How in the world would they realize such a phone limiting it with just LTE connectivity? I really don't get it...I'm super duper disappointed (don't tell me LTE is the same as 4G as it is simply not the same).

Help 5GB transfer gone in 1day

I've seen a similar question uploaded a couple years ago, but didn't really find an answear…
I suddenly received my 2GB warning yesterday, and after about an hour run out of my 5GB pack
I've had my phone (Kruger und Matz 4S) for over 2 years now and it's the first time something like this happens

I checked the data usage stats, they show normal usage up to yesterday, and then a 4,9GB spike
And it claims, that most of the transfer got used up by the Android System in the background

I literally have no idea how to react to that and would be grateful for an answer


PS. Turning on WI-FI for a couple minutes and watching the statistics showed, that it's still using about 10MB per second, even from WI-FI

HELP bug proof my porch

Hey guys,
so i need some help and ideas. my porch this past year i have made a lounge area where i can smoke my cigars and chill. it has been great up until tonight. it has been getting quite warm the last few days, and today it was very hot. it's so hot right now at night that i can't chill out due toithe fact that there are a ton of flies and bugs flying around. i have been thinking of getting some sort of roll out blinds or maybe some kind of net that i can roll down at night.

any ideas? i was also wondering about bug zappers if they really work or anything along those lines.

Displaying A Bunch Of Images At Runtime (Left To Right)

Hello,

I have a rather strange application that has a bunch of images (500+) png images under 1kb each. The data will come in as the file name 0001.png, 0002.png, 0003.png etc. that is unknown in advance so they need to be drawn at runtime.

What control should I use to draw the images from left to right top to bottom. The widths change but the height remains the same for all the images.

Thanks in advance!

Paul H

I have a Kyocera hydro shore that I bought new in a 0pen box special. It's an AT&T phone. I had to get a code from them to unlock it so I could use my own sim. It has Android 5.1.1 and I am trying to upgrade to a newer version of Android but everything I try it won't let me update. The update is still saying att is still who does updates but it's unlocked from them so I don't have an account with them. If I could get the phone to boot to the bootloader I can use a custom rom. I have tried holding down all configurations of the buttons but cannot get it to go to where I can load a custom backup changing the Android version. Does anyone have a clue what I'm doing wrong? Please help, Paul H Thanks

SQLite order, group, most recent

I'm trying to see if there is a better way to do this than I'm doing. What I have works, but I have to make several DB queries in a loop to get what I want. I'm wondering if there is a better approach that can do it all in a single query. I've tried some things I found on SO and such, but while they worked for MySQL, they use a syntax SQLite doesn't appear to support.

I have a table "messages" with the following data:
Code:
+----+----------+------------+-----------------+---------------------+---------------------+------+
| id | incoming | contact_id | contact_name    | message             | sent                | seen |
+----+----------+------------+-----------------+---------------------+---------------------+------+
|  1 |        0 |         30 | Cap             | Hi there, Cap       | 2019-01-10 15:07:43 |    0 |
|  2 |        1 |         30 | Cap             | Hey, what's up?     | 2019-01-10 15:27:23 |    0 |
|  3 |        0 |         43 | SorcerorSupreme | Strange night, huh? | 2019-01-10 16:42:18 |    0 |
|  4 |        1 |         37 | IAMGROOT        | I am Groot!         | 2019-01-13 09:24:55 |    0 |
|  5 |        0 |         30 | Cap             | Nothing             | 2019-01-14 02:53:28 |    0 |
+----+----------+------------+-----------------+---------------------+---------------------+------+
id, incoming, contact_id, and seen are int, the rest are text

The goal is to get only the last sent message from each contact. For that, I am using the following two functions:
Code:
public ArrayList<Map<String,Object>> loadConversationList() {
    ArrayList<Map<String,Object>> list = new ArrayList();
    SQLiteDatabase db = getReadableDatabase();
    Log.d(TAG, "Getting list of last messages");
    String sql = "SELECT contact_id, max(sent) AS td FROM " + MESSAGE_TABLE + " GROUP BY contact_id ORDER BY td ASC";
    Cursor res = db.rawQuery(sql, null);
    Log.d(TAG, "Made call");
    res.moveToFirst();
    Log.d(TAG, "Set cursor");
    while (!res.isAfterLast()) {
        int contact_id = res.getInt(res.getColumnIndex("contact_id"));
        String sent = res.getString(res.getColumnIndex("td"));
        Log.d(TAG, "Getting info for "+contact_id+":"+sent);
        Map<String, Object> message = getMessage(contact_id, sent);
        list.add(message);
        res.moveToNext();
    }
    Log.d(TAG, list.toString());
    return list;
}

private Map<String,Object> getMessage(int contact_id, String sent) {
    Map<String,Object> message = new HashMap();
    SQLiteDatabase db = getReadableDatabase();
    String sql = "SELECT * FROM " + MESSAGE_TABLE + " WHERE contact_id=" + contact_id + " AND sent='" + sent + "'";
    Cursor res = db.rawQuery(sql, null);
    res.moveToFirst();
    while (!res.isAfterLast()) {
        message.put("mid", res.getString(res.getColumnIndex("id")));
        message.put("incoming", res.getString(res.getColumnIndex("incoming")));
        message.put("contact_id", res.getString(res.getColumnIndex("contact_id")));
        message.put("contact_name", res.getString(res.getColumnIndex("contact_name")));
        message.put("message", res.getString(res.getColumnIndex("message")));
        message.put("sent", res.getString(res.getColumnIndex("sent")));
        res.moveToNext();
    }
    return message;
}

As I said, this works perfectly - does exactly what I want. I'm just trying to see if there may be a more efficient approach.

BLE password connection

Am using BluetoothLeGatt to communicate with a jaalee beacon. Can connect with the beacon. However, to write characteristics I must connect with a password, 0x666666. After connection, cannot write the password to the characteristic since I did not connect with the password. Typical horse and cart scenario. Been stuck on this awhile, please help a newbie over a hurdle.

Help To continue, give Google Photos access to your photos

(First time poster, apologies if i get this wrong)

I have an issue on my pixel 2 xl, I cannot access my photos because the phone thinks that the photo app doesn't have permissions to access it.

Whenever I try to access photos, even through other apps, I get the message:
"To continue, give Google Photos access to your photos" with a "GO TO SETTINGS" button.

When I go to the settings of the app I have gave it all the available permissions.

Restarting the phone doesn't do anything.
Uninstalling photos app and reinstalling doesn't do anything

I can't think of anything that will fix this, or allow me to get access to my photos.

- I am in the android beta program
- Android version Q
- Build Number: QPP1.190205.018.B4

I'm not sure of what more information is required, but I will try anything to fix this.

Thanks in advance.

Using placeholders with textView

I'm trying to get mybrain around using placeholders with a textView. Instead of simply displaying "VAT" I want to show "VAT at 20%" (or whatever the rate is).

I currently have in my strings.xml

<string name="vat_text">VAT</string>

and in my Java

textView16.setText(R.string.vat_text);

I have changed the entry in strings.xml

<string name="vat_text">VAT at %d</string>

and tried in my Java

textView16.setText(getString(R.string.vat_text, vatPc));

but this gives a runtime error (which I couldn't catch as there were dozens of other errors afterwards.

Touch Sensitivity

Hi,
I am using S10 for past one month. Initially it was okay. But recently I am encountering some problem with my phone's touch response. Sometimes it does not work. Examples can be when I am making an whatsapp call, I can not end the call or do anything on the screen. Touch does not respones. I have to go to drop down menu to end the call. Again it happens when I am searching something from google search app. I am touching to creat or edit, but no response! Is it the problem with the glass protector (it came from the box) or with software?

Phone doesn't recognize pattern, won't unlock

I had Magisk installed, did the following procedure so that I can update to the latest OTA: magisk manager>uninstall>restore images> download and install OTA. Magisk didn't behave like it did before (uninstall button didnt change to install button), and then i restarted my phone.. It booted up normally. went to magisk manager, where it said it wasn't installed. downloaded the newest stable release of magisk, tried to reboot into recovery only to find the pattern screen for decrypting which doesnt recognize my pattern. I have then tried to boot normally, and then the phone didnt recognize the pattern at all, be it normal unlock or decrypt. What do I do? Bootloader unlocked, and I do not want to lose my data. Please give steps, I don't know much about this stuff :c

Help Appreciated - Barcode Scanner data to Excel

Hi guys and gals. I have been charged with learning something completely new to me, and as much as I would like to say I am a quick learner, I find that half the battle is not knowing the question to ask, to get the answer I need. That being said, what I am trying to do seems relatively simple, it's just getting there, so i'll explain what I am trying to do and if someone can aim me in the right direction, it would be very much appreciated.

I have a TC20 barcode scanner, of course Android based. It does not have a standard camera as per most of the phones that are used in various YouTube videos. What you can do on this unit is press a button and it will decode a barcode to whatever field I have selected on whatever app at the time without having to do anything else. I believe there is a background service that constantly runs in the background that handles this.

I want to be able to scan a barcode, and on submission, be it automatically after scanning, or by pressing a submit button, pass that barcode information and a timestamp to a live open database or spreadsheet.

I HAVE been able to get this working following various tutorials into Google Sheets, but I am unable to query live data via Microsoft Access which is the tool of choice in the office (currently).

Thank you for taking the time to look at this post and I apologise in advance if this has been asked hundreds of times before, my limited understanding of how this works means I couldn't find it by directly searching... (back to not knowing the question to ask...)

Media recovery and Rooting my LG G6

I have a LG G6 (LG-H870) with android oreo 8.0.0, kernel version 3.18.71
I want to root in mainly to recover a couple videos I've deleted.
If there is a way to recover the videos without root that would be great, if not then I need some help rooting my device because I've never done it before.
The videos I've deleted were locked and I have "permanantly deleted" them as they don't go in the trash.

I've found this : https://forum.xda-developers.com/lg-g6/development/tool-tool-one-driversunlocktwrpfactory-t3674088

Also, I know that rooting my phone voids my warranty so I was wondering if there was a way to unroot my phone in order to get back my warranty after I'm done recovering my videos/photos?

Basically...
Is there a way to recover deleted videos/images without rooting my device and if not then how do I safely root it?

Help Phone restarts forgets all settings, passwords

Dear all,

I had a very strange thing happening with my phone two days ago. It was in my pocket, together with my other phone, battery was low. I pull the phone out of my pocket and it starts a walkthrough typical for the newly started device, asking for passwords, gmail info, asking for the finger print to be set up from scratch. Because it is my second phone, set up with a random gmail account, I of course lost memory of the account, passwords, everything and I logged in with another gmail account.

The problem is that the phone now is not showing all the apps that were installed and messages and stuff. It forgot everything, including my Samsung account. And of course I cannot remember all the passwords and stuff so I am losing contacts, messages and other stuff like this.

My question is how come this happened, having in mind my phone was locked in my pocket, and does someone else have similar experience? This thing with 100 users and passwords is pising me off.

Bests

Filter

Back
Top Bottom