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

Texts fail on first try

Hi,

I have had a persistent problem for a couple of months now and I have been unable to find a solution on the Internet. When I send a message to IPhone users , the message will time out. Then when I click the Resend menu option, the text sends instantly.

This problem occurs randomly as I will sometimes send messages to the same recipients successfully on the first try. I went through every setting listed on several web pages, including wi-fi settings, message settings, battery settings and internet settings. I even factory reset the phone and the problem persisted.

I upgraded from a Galaxy Note 10+ to a Note 20 Ultra, which required a new SIM card. The new phone does it too.

Can someone help me?

Check Battery Cover issue: Solved

I recently started having the issue of having to "check the battery cover" on my S5 every 5 minutes. There is so much on the WEB about this, but no "definitive" answer. I tried the following and for the past 3 days have not seen the warning.

I removed the back cover and the micro SD card. I cleaned the memory card contacts with a soft eraser and reinserted, then cleaned the back cover with a damp cloth, and where the silicon gasket contacts the back of the phone. After putting it back together and restarting, things seemed "normal"

Notification Sound Repeatedly goes off samsung galaxy s8

I hear the sound associated with notifications and it goes off atleast 3 x an hour every several hours every day. It's making me nuts. I Pull down the notifications screen and don't find a text stating where the notication came from, i also check the phone to see if a recent call came from a blocked number and I check texts and emails to see if the recept of either came in at the same time as the sound notification but this proves fruitless too. Someone please help. I'm seriously about to blow my brains out if I can't figure out where this is coming from and how to stop it.

Do you think this is true - Money Miner

Rate your passive earnings online. Universal free mining platform.

Download in Google Play

Passive earnings is every person’s dream. There are a lot of ways for it - from bank account to stock management and investments, e.t.c, however without starting capital those ways are unachievable. Money Miner does not require any investments from you but allows you to enjoy a passive online earnings process by only using your mobile device.


This technology is based on cloud servers algorithms which allow its users to mine (to receive) the most currently profitable cryptocurrency: BitCoin, Ether, Monero or other coin. The amount extracted is expressed in the equivalent of USD, it depends on the cryptocurrency used of course. The application does not heat the phone, does not require a lot of resources and can work in the background without interfering with the use of your device usage experience. Every user participates in the same network using global server power, that's why the performance of your device doesn’t matter, only time spent in the system does.


All mining processes are made by Cloud servers. Internet connection on your device is all that requires to start. Mining simulator does not require any special skill and complicated settings. Press the button and start the process now!


With the Money Miner you’ll have full passive earnings experience. Get advanced powers using everyday boosters and promo codes to upgrade mining speed every day!


Getting money online is easy! Don’t miss a trending unique opportunity which allows you to find ways to earn money by just having a phone in your pocket.

Attachments

  • 1.png
    1.png
    693.7 KB · Views: 322
  • 2.png
    2.png
    572.5 KB · Views: 307
  • 3.png
    3.png
    351.3 KB · Views: 325
  • 4.png
    4.png
    437.1 KB · Views: 277
  • 5.png
    5.png
    512.4 KB · Views: 372

Help 4g voice and data?

hi,
im not up much on network types in terms of voice and data differences

...to improve my call quality 3 got me to switch to 3g only for calls ...... but since then i seem to only see the H+ for data rather than 4g .... and hence connection slower for data

.....if im using 3g for calls does that mean i can only use 3g for data too? :/

thanks

  • Poll Poll
How does it deal with Samsung bloatware?


Does anyone stopping know how this app would deal with an app like Samsung Notes? This app is giving me a headache by constantly and temporarily freezing my Note 8. Samsung does not allow it to be uninstalled and it runs in the background even though I don't use it.

ToDo Notes Lite [Free][App]

ToDo Notes Lite [Free][App]
To do Notes aims to become your daily and reliable organizing tool, offering you different features within an innovative and user-friendly app, designed to help you fulfil your day to day goals and eliminating the procrastination habit of your life for sure.

How can To Do Notes be described?
“Simple and easy to use”
“Your personal assistant no matter when or where”
“Allows you to attend all your professional, social and family obligations without stress”.
"Best way to set up and achieve your goals”
“Great and fast performance for those busy days”
Download to Google play: ToDo Notes Lite
3yL-7G0GEQvbX0KlZU6q1yyd9SyaX0T_OikR9UbNPs-totwVeyVappLpInqmNr7vNuw=w2504-h600


uQ9scl1ael4jJJTB-CZaBZptCtdjTXPxsxB_zZ136j1tuuK85qru_WTUECXVbHthUQ=w2504-h1200

ListView problem. Cursor gets closed.

I am using ListView to display a small list. I know it's on the main thread, but this is not a problem. It used to run under earlier API levels but gives a problem under 27.

Code:
package com.scorer.tennis;

import android.app.Activity;
import android.database.Cursor;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;

public class LogActivity extends Activity {

    DBAdapter myDb;

    // ***********************************

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_log);

        myDb = new DBAdapter(this);
        myDb.open();

        populateListViewFromDB();
    }

    // ***********************************

    @Override
    protected void onDestroy() {
        super.onDestroy();
        myDb.close();
    }

    // ***********************************

    public void Clear_Log(View view) {
        myDb.Clear_Log();
        finish();
    }

    // ***********************************

    private void populateListViewFromDB() {

        Cursor cursor = myDb.getAllLogRows();

        // Allow activity to manage lifetime of the cursor.
        // DEPRECATED! Runs on the UI thread, OK for small/short queries.
        startManagingCursor(cursor);

        // Setup mapping from cursor to view fields:
        String[] fromFieldNames = new String[]{DBAdapter.KEY_LOG_ID, DBAdapter.KEY_LOG_DATE, DBAdapter.KEY_LOG_TIME, DBAdapter.KEY_LOG_LOG};

        int[] toViewIDs = new int[]{R.id.item_id, R.id.item_date, R.id.item_time, R.id.item_log};

        // Create adapter to many columns of the DB onto elements in the UI.
        SimpleCursorAdapter myCursorAdapter = new SimpleCursorAdapter(this,     // Context
                R.layout.log_item_layout,                                               // Row layout template
                cursor,                                                                 // cursor (set of DB records to map)
                fromFieldNames,                                                         // DB Column names
                toViewIDs);                                                             // View IDs to put information in

        // Set the adapter for the list view
        ListView myList = (ListView) findViewById(R.id.id_log_list);
        myList.setAdapter(myCursorAdapter);
    }
}
On executing the last line (myList.setAdaper...) it bombs out with:

Code:
W/Adreno-EGL: <qeglDrvAPI_eglGetConfigAttrib:612>: EGL_BAD_ATTRIBUTE
D/vndksupport: Loading /vendor/lib/hw/gralloc.msm8937.so from current namespace instead of sphal namespace.
D/OpenGLRenderer: eglCreateWindowSurface = 0x8c06fe68, 0x8b5ce008
D/ViewRootImpl@a5eda92[OtherActivity]: MSG_RESIZED_REPORT: frame=Rect(456, 32 - 823, 799) ci=Rect(0, 0 - 0, 0) vi=Rect(0, 0 - 0, 0) or=2
D/ViewRootImpl@a5eda92[OtherActivity]: MSG_WINDOW_FOCUS_CHANGED 1
V/InputMethodManager: Starting input: tba=android.view.inputmethod.EditorInfo@8c0dde nm : com.scorer.tennis ic=null
D/InputMethodManager: startInputInner - Id : 0
I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
D/InputTransport: Input channel constructed: fd=74
D/InputTransport: Input channel destroyed: fd=72
D/ViewRootImpl@a5eda92[OtherActivity]: ViewPostIme pointer 0
D/ViewRootImpl@a5eda92[OtherActivity]: ViewPostIme pointer 1
D/ViewRootImpl@a5eda92[OtherActivity]: MSG_WINDOW_FOCUS_CHANGED 0
D/InputTransport: Input channel constructed: fd=75
D/ViewRootImpl@a934784[LogActivity]: setView = DecorView@497db6d[LogActivity] TM=true MM=false
D/ViewRootImpl@a934784[LogActivity]: dispatchAttachedToWindow
D/AndroidRuntime: Shutting down VM
   
   
    --------- beginning of crash
E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.scorer.tennis, PID: 1109
    android.database.StaleDataException: Attempting to access a closed CursorWindow.Most probable cause: cursor is deactivated prior to calling this method.
        at android.database.AbstractWindowedCursor.checkPosition(AbstractWindowedCursor.java:139)
        at android.database.AbstractWindowedCursor.getString(AbstractWindowedCursor.java:50)
        at android.widget.SimpleCursorAdapter.bindView(SimpleCursorAdapter.java:150)
        at android.widget.CursorAdapter.getView(CursorAdapter.java:289)
        at android.widget.AbsListView.obtainView(AbsListView.java:3180)
        at android.widget.ListView.measureHeightOfChildren(ListView.java:1448)
        at android.widget.ListView.onMeasure(ListView.java:1355)
        at android.view.View.measure(View.java:23407)
        at android.widget.RelativeLayout.measureChildHorizontal(RelativeLayout.java:715)
        at android.widget.RelativeLayout.onMeasure(RelativeLayout.java:461)
        at android.view.View.measure(View.java:23407)
        at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6967)
        at android.widget.FrameLayout.onMeasure(FrameLayout.java:185)
        at android.view.View.measure(View.java:23407)
        at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6967)
        at android.widget.FrameLayout.onMeasure(FrameLayout.java:185)
        at android.view.View.measure(View.java:23407)
        at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6967)
        at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1514)
        at android.widget.LinearLayout.measureVertical(LinearLayout.java:806)
        at android.widget.LinearLayout.onMeasure(LinearLayout.java:685)
        at android.view.View.measure(View.java:23407)
        at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6967)
        at android.widget.FrameLayout.onMeasure(FrameLayout.java:185)
        at com.android.internal.policy.DecorView.onMeasure(DecorView.java:909)
        at android.view.View.measure(View.java:23407)
        at android.view.ViewRootImpl.performMeasure(ViewRootImpl.java:2952)
        at android.view.ViewRootImpl.measureHierarchy(ViewRootImpl.java:1950)
        at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2236)
        at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1843)
        at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:7978)
        at android.view.Choreographer$CallbackRecord.run(Choreographer.java:911)
        at android.view.Choreographer.doCallbacks(Choreographer.java:723)
        at android.view.Choreographer.doFrame(Choreographer.java:658)
        at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:897)
        at android.os.Handler.handleCallback(Handler.java:790)
        at android.os.Handler.dispatchMessage(Handler.java:99)
        at android.os.Looper.loop(Looper.java:164)
        at android.app.ActivityThread.main(ActivityThread.java:7000)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:441)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1408)

Can anyone please tell me what is happening to the cursor?

Using Calendar flexibly

I'd like to have all my activites listed in one place, instead of regular daily schedule on paper on my wooden clipboard, things I'm afraid I may forget on my phone with its reminder chime and things I hear of while I'm out and about on my paper pocket calendar. The problem is that, with my daily schedule all laid out in my phone, when I try to delete one item one time to substitute a special event, the screen says "Delete X?//This and future events//All events." If I try to put in the special event by editing the regular one, it says "Details//Change all events in the series//Change this and all future events." Is there some way to put in something I want to do instead of what I usually do at that time? I have a UMX U683CL, whose OS is, I believe, Android Go 8.1.

Word Dices. Word Puzzle Game. Word Search Game. (by Urmobi)

Word Dices is a Word Search Game for those who like word searches and crosswords. Each level in our word game has a new theme! Your task is to find all the hidden words related to the topic. Train your mindfulness, expand your vocabulary and ability to find associations. Immerse yourself in the atmosphere of a magical forest and enjoy the gameplay of our word finder game!

How to play?
Swipe your finger across the screen, combine letters and find all the hidden words on the level.
The letters are connected in any direction - up, down, diagonally and even backwards - but only in straight lines, no turns! Easy levels are gradually replaced by more difficult in our word puzzle game. Magic hints will help you through the levels, and you can also send a screenshot of the level to your best friend and ask him for help!

⭐ Learning English? ⭐
Check and replenish your English vocabulary now!

No internet?
It doesn’t matter, you can play offline, but remember that you can get some valuable rewards only when the Internet is connected.

Limitations?
No limits! Play on both your smartphone and tablet. Our Word Search puzzle is suitable for both adults and children. Play together and spend time with your family.

What's interesting?

250+ thematic levels
Special super challenging weekly level
Free hints every day
Word Search
Brain Teaser
An Addictive Word Puzzle

Complete the word search game and become a true Word Dices word finder.

Need help or found a bug? Feel free to contact us at info@urmobi.games. We read all your reviews and comments, because they inspire us and help us make the game better!


Price:Free
Download Link:

https://play.google.com/store/apps/details?id=games.urmobi.word.dices

Toffee : Line Puzzle Game. Connect Dots. Shapes. (by Urmobi)

Do you like playing puzzle and solving puzzles? Collect shapes from the lines!

Do you like sweets, marshmallows, marmalade, and other sweets? Do you like smart games? Then drop by us! In the fascinating Toffee puzzle, you will go on a journey across the planet of sweets with the owner of the pastry shop in search of the best cake recipes for his cookbook! Go through hundreds of interesting levels, earn candies, bake and collect cakes for your collection to unlock even more interesting levels, collect more points and lines! Train your cleverness and test your skills in a line puzzle with beautiful ropes in super-difficult bonus levels! Just swipe and collect the shapes!

How to play puzzles with ropes, rubber bands, and lines?


Stretch the elastic, and even too large sizes.
In the nodes of the lattice, the elastic can be fixed with dots to stretch and twist it in unpredictable directions.
Remember that already set dots and lines cannot be moved!
A gum candy can cross itself only at knot points, but cannot overlap itself.
If you make a mistake - it doesn't matter, you can always cancel the move, or reset the level, while you don't lose anything, our puzzle does not have such resources as life or energy!
If playing has become quite tricky, you can use the tips. One hint will show three moves.

What's interesting in the Toffee Rope puzzle?

⭐️ Rewards for daily entry - tips, cakes, and images!
⭐️ Skins! Change the appearance of gum and dots. And no deception, all of them can be received as a daily reward if you work hard enough to solve puzzles and puzzles to collect all the bonuses for the day!
⭐️ Bake all the cakes for the Rabbit confectionery and get access to super-complex bonus levels where you need to collect the pieces . But the complexity is justified by awards. You will receive more rewards for your skill!
⭐️ No time limit or other resources is restricting your game. You can play our rope puzzle without the internet!
⭐️ Suitable for the whole family, both for adults and children.
⭐️ For a smartphone and tablet, and your progress saved on our server, so you can enjoy the game on different devices while maintaining your growth!
⭐️ For our free game, you do not need an active Internet connection.


And do not forget to put cakes in the oven while playing the Toffee puzzle with lines and dots!

If you suddenly have ideas on how to improve our puzzle or encounter any difficulties, write to us at info@urmobi.games, and we will be happy to hear your opinion and help you solve problems.



Price : Free
Download link:
https://play.google.com/store/apps/details?id=com.Urmobico.toffee.line.puzzle

FunSeeker Find the Difference. Spot the Difference (by Urmobi)

FunSeeker - a new Spot the Difference game!

Do you like looking for differences? If you do, you will definitely like FunSeeker, our new Find the Difference game! Download it to get access to hundreds of exciting levels, interesting pictures, a great interface, and clear rules!

Spend your time meaningfully and with pleasure!

Spot the Difference games improve concentration and helps kill time on a long commute, while waiting in a queue, or at an event that you don't really enjoy. Our Find the Difference game is a great choice for kids and adults alike since the pictures in the game come from different categories: candies, travel, holidays, vacations, and many more!


How to play FunSeeker

You have to find the difference between two images. You will need to find 5 differences by tapping them on either picture. You can zoom in on photos using two fingers. Once you've found these differences, you will proceed to a new, more exciting level. Levels have no time restrictions and the game has no timer that could ruin all the fun!

FunSeeker key features:

- a free game for the entire family;
- phones and tablets supported;
- and simple and intuitive interface;
- no time limitations;
- free tips;
- beautiful photos;
- zoomable images.

Is the game free? Can I play offline?

Our game is 100% free — just download and play it. An Internet connection will only be required for downloading more exciting levels! If you find a particular level too difficult, use free hints!


Only several pictures are visible at the beginning. To open a new one, you need to complete any unlocked level. Beat the game to open all the pictures! However, if you want to unlock a particular picture in advance, you can do it using the game currency that you can get for free!

Feedback
If you have an improvement idea, please don't hesitate to reach out to us at info@urmobi.games to share your ideas. Should you have problems with the game, please send us comments along with screenshots and we'll do our very best to solve the issue and help you.

We will appreciate your feedback on our game! ⭐️⭐️⭐️⭐️⭐️
Liked our game? Please leave your comment and let us know your opinion about your brightest moments and emotions – we will really appreciate it. We always read our players' comments to the letter, because they help us make great games!
✌️


Download link:
https://play.google.com/store/apps/details?id=com.urmobi.funseeker

Filter

Back
Top Bottom