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

Help Identifying Game

Hello everyone,

Just wondering if anyone could help me identify a game?

It kept coming up as an advert whilst I was playing WordLink. It had a cartoon style horse in a damaged shed and a tree on fire next to it, viewed isometrically. The instruction was to stop the horse from bolting by dragging equipment from the bottom toolbar onto the picture to interact with it; ie: a bucket of water onto the tree on fire to put it out for example.

Anyway I've tried Google, tried the Playstore, tried searching this forum, tried playing WordLink to see if the advert came up again, all to no avail. Anyone have any idea what game it is? Gardenscapes kept coming up but that doesn't seem to be it...

Thanks,

Pete.

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?

Filter

Back
Top Bottom