Affichage des articles dont le libellé est slow. Afficher tous les articles
Affichage des articles dont le libellé est slow. Afficher tous les articles

lundi 24 mars 2014

[Q] OTA Update really slow topic




I just received my OTA Kit Kat update for the International version and started updating, but the download is going reaaally slow. It got to 6% for 20-30 minutes and it's just 500mb. Does anyone know why is that?





dimanche 23 mars 2014

My Rooted Sony Xperia M Dual slow startup topic




I recently rooted my sony xperia m dual build number 15.2.A.2.5 and installed Link2SD and Folder Mount.
when I reboot my device it takes about 6 minutes to startup which is pretty slow
Can you please help ??





mardi 18 mars 2014

[Q] Note 3 Slow Wifi Speed (SM-N9005) topic




Hi cant seem to get higher than 25Mbit on my note 3 wifi speed... i have tried 3 routers already and i just purchased a Netgear Nighthawk R7000 router.

I can get 130Mbit on my dell xps 15 using wireless N.... my Note is connected by AC and still only getting about 25Mbit

It shows connected at 466Mbit on the wifi menu of the note 3 ... obviously not right

very frustrating ... any ideas what i can do ?





lundi 17 mars 2014

[PROBLEM] Extremely slow charging. topic




Hello.
I dont know why but the last 3 days my phone charges extremely slow.
I dont know if its the hardware of the software.
I did not make a major change in the phone or something.I dont know why it charges so slow.
Charging rate is : 1% in 4 and a half minutes....
I cant figure out why.
I was in a trip and i got the charger with me (The output was rated 220 volts so no problem with the charger)
BUT the cable may be damaged.
Softwarewise i have no idea what i did to affect the charging .

It may be a bug or a calibration issue.Because sometimes for example it climbs from 29 or 28 % to 30


Please tell me what you think thank you.





dimanche 23 février 2014

[Q] slow 3g signal topic




can anyone help me to get better 3g signal on galaxy y? , because this 3g network is too slow on my phone n consume battery drain very fast





Slow WIFI Transfer topic




Hi,

I would like to ask if it's normal to have <1MBps wifi transfer rate on my Galaxy S4. I'm trying to transfer a movie file from my phone to my PC (gigabit-lan) via my TP-LINK N750 router.

I checked my phone and it's currently connected using 2.4Ghz spec with 72Mbps linkspeed. Theoretically.. the wifi transfer speed should be around 8MBps not <1MBps.

Any clues why my transfer speed is slow? My forte is more on network stuffs so I'm not really sure if my phone is causing the bottleneck here or not. See attached for reference.

Thanks guys!

Sent from my GT-I9505 using XDA Premium 4 mobile app








Attached Thumbnails


Click image for larger version<br/><br/>Name:	1393199226840.jpg<br/>Views:	N/A<br/>Size:	48.8 KB<br/>ID:	2597070
 
















[Q] app slow down when using sqlite database topic




I am trying to create a circular buffer using sqlite. For some reason every time I instantiate my db access class, the os start skipping frames (I am using the emulator to run my code).

02-22 20:22:03.172: I/Choreographer(860): Skipped 628 frames! The application may be doing too much work on its main thread.

I do not understand what I am doing wrong. I am calling the database class from an intentService (I assume this should not slow down the main thread at all) as follows:

Code:


private SqliteLog mSqliteLog;
mSqliteLog = new SqliteLog(context);
mSqliteLog.writelogInformation("sleepMode", "ON");


I added my code at the end of this message

Code:


/**
 * SqliteLog
 *
 *
 * Base class for sqliteLog control
 *
 *
 */
public class SqliteLog {

    // Debug log tag
    private static final String tag = "SqliteLog";

    // Version of database
    private static final int DATABASE_VERSION = 1;

    // Name of database
    private static final String DATABASE_NAME = "log";

    // Table of database
    private static final String TABLE_NAME = "log";

    public static final String ROWID_NAME = "id";
    public static final String PREFERENCE_NAME = tag + "Pref";

    public static final String COLUMN_LOGNUMBER = "logNumber";
    public static final String COLUMN_TIME = "time";
    public static final String COLUMN_FUNCTION = "function";
    public static final String COLUMN_DESCRIPTION = "description";
    public static final int TABLE_SIZE = 20;

    private static final String DATABASE_CREATE ="create table " + TABLE_NAME + " (" + ROWID_NAME + " integer primary key autoincrement, " +
                                                                                    COLUMN_LOGNUMBER + " INTEGER NOT NULL, " +
                                                                                    COLUMN_TIME + " TEXT NOT NULL, " +
                                                                                    COLUMN_FUNCTION + " TEXT NOT NULL, " +
                                                                                    COLUMN_DESCRIPTION + " TEXT NOT NULL " +
                                                                                  ");";

    //The context of the calling class;
    private Context thisContext;

    /**
    * <p>Constructor for SqliteLog
    * @param context :- Context of calling class
    *
    */
    public SqliteLog(Context context) {
        Log.d(tag,"SqliteLog constructor called");

        thisContext = context;
    }

    /**
    * writelogInformation :- Writes a row into the log table
    *
    */
    public void writelogInformation(String functionName, String descriptionInfo) {
        // Retrieve preferences
        SharedPreferences SqliteLogPref = thisContext.getSharedPreferences(PREFERENCE_NAME,  Context.MODE_PRIVATE);
        int logNumber = SqliteLogPref.getInt("logNumber", 1);

        // Open database for writing
        DatabaseHelper databaseHelper = new DatabaseHelper(thisContext);
        SQLiteDatabase sQLiteDatabase = databaseHelper.getWritableDatabase();

        // Define the column name and data
        ContentValues values = new ContentValues();
        values.put(COLUMN_LOGNUMBER, logNumber);
        values.put(COLUMN_TIME, getTime());
        values.put(COLUMN_FUNCTION, functionName);
        values.put(COLUMN_DESCRIPTION, descriptionInfo);

        // Update database
        sQLiteDatabase.update(TABLE_NAME, values, null, null);

        // Close database
        databaseHelper.close();

        // Test if next database update will need to be wrapped around
        logNumber = (logNumber % TABLE_SIZE) + 1;

        // Store preferences
        SharedPreferences.Editor editor = SqliteLogPref.edit();
        editor.putInt("logNumber", logNumber);
        editor.commit();
    }

    /**
    * clearLog :- Erase all information from table
    *
    */
    public void clearLog() {
        // Retrieve preferences
        SharedPreferences SqliteLogPref = thisContext.getSharedPreferences(PREFERENCE_NAME, 0);

        // Store preferences
        SharedPreferences.Editor editor = SqliteLogPref.edit();
        editor.putInt("logNumber", 1);
        editor.commit();

        // Delete all rows
        DatabaseHelper databaseHelper = new DatabaseHelper(thisContext);
        SQLiteDatabase sQLiteDatabase = databaseHelper.getReadableDatabase();
        sQLiteDatabase.delete (TABLE_NAME, null, null);
    }

    /**
    * readlogInformation :- Read the whole table
    *
    */
    public String[] readlogInformation() {
        // Create string array of appropriate length
        String[] returnArray;

        // Retrieve preferences
        SharedPreferences SqliteLogPref = thisContext.getSharedPreferences(PREFERENCE_NAME, 0);
        int logNumber = SqliteLogPref.getInt("logNumber", 0);

        // Open database for reading
        DatabaseHelper databaseHelper = new DatabaseHelper(thisContext);

        try {
            SQLiteDatabase sQLiteDatabase = databaseHelper.getReadableDatabase();

            // Get a cursor to the correct cell
            Cursor cursor = sQLiteDatabase.query(TABLE_NAME, null, null, null, null, null, null);

            // Get number of rows in table
            int lengthOfTable = 0;

            // Move cursor to where it needs to be
            if (cursor != null) {
                lengthOfTable = cursor.getCount();

                // If count is less than max, then we have not wrapped around yet
                if(lengthOfTable < TABLE_SIZE) {
                    cursor.moveToFirst();
                }

                // Position cursor appropriately
                else {
                    cursor.moveToPosition(logNumber-1);

                }

                // Create string array of appropriate length
                returnArray = new String[lengthOfTable];

                for(int i=1; i<=lengthOfTable; i++) {

                    returnArray[i] = cursor.getString(1) + "; " + cursor.getString(2) + "; " + cursor.getString(3);
                }
            }
            else {
                Log.e(tag,"Cursor null");

                // Create string array of appropriate length
                returnArray = new String[0];
            }
        } catch(SQLiteException e) {
            Log.d(tag,"SQLiteException when using getReadableDatabase");

            // Create string array of appropriate length
            returnArray = new String[0];

        }


        // Close database
        databaseHelper.close();

        return returnArray;
    }

    /**
    * readlogInformation :- Read the whole table
    *
    */
    public String getTime() {
        // Create a new time object
        Time currentTime = new Time(Time.getCurrentTimezone());

        // Get current time
        currentTime.setToNow();

        return currentTime.toString();
    }


    /**
    * DatabaseHelper
    *
    *
    * Class to help control database
    *
    *
    */
    private static class DatabaseHelper extends SQLiteOpenHelper {
        /**
        * <p>Constructor for DatabaseHelper
        * @param context :- Context of calling class<p>
        *
        */
        DatabaseHelper(Context context) {
            super(context, DATABASE_NAME, null, DATABASE_VERSION);

            Log.d(tag,"DatabaseHelper constructor called");
        }

        /**
        * <p>onCreate
        * @param db :- Pass an sqlite object
        *
        */
        @Override
        public void onCreate(SQLiteDatabase db) {
            Log.d(tag,"onCreate called");

            // Create database
            db.execSQL(DATABASE_CREATE);

            // Insert a new row
            ContentValues values = new ContentValues();

            // Create a certain number of rows
            for(int i=1; i<=TABLE_SIZE; i++) { 
                values.clear();
                values.put(COLUMN_LOGNUMBER, i);
                values.put(COLUMN_FUNCTION, "empty");
                values.put(COLUMN_DESCRIPTION, "empty");
                db.insert(TABLE_NAME, "null", values);         
            }

            Log.d(tag,"database created");
        }

        /**
        * <p>onUpgrade
        * @param db :- Pass an sqlite object
        * @param oldVersion :- Old version of table
        * @param newVersion :- New version of table
        *
        */
        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
            Log.d(tag,"onUpgrade called");

            // Not used, but you could upgrade the database with ALTER
            // Scripts
        }
    }
}


I have been trying to figure this out for a while now. I would appreciate any insight, Amish





samedi 22 février 2014

[Q] very slow charging on official 4.3 firmware topic




dont know if all of you having this prob. but my bro's device charging rate is very slow 4% charging in 20 minutes. this is not good if wanna go for travelling or any and full charging tooks 4+ hours. any suggestions ? and i tried wiping all system,data,cache but problem is not solved. please help me.:(





mardi 18 février 2014

Play Store SUPER Slow? topic




Ever since updating to 4.3/Sense 5 (Cap's ROM) the Play Store has been incredibly slow downloading over mobile. Wifi seems normal as does mobile speed for other data. Anybody else seeing this?

Sent from my EVO using xda premium





mercredi 5 février 2014

[Q] Razr i One Mod lags & slow system topic




Is anyone who is using the razr i - "one" mod, also experiencing lags and a really slow system?
the stock rom was a bit slow, too. so i thought i try out this mod, but it even got worse :confused::confused:
did anyone try out the JellyAOSP Rom yet? Is it stable and fast :o?
thanks!





mercredi 29 janvier 2014

(Q) Charging. Power-Off= Very Slow topic




Charging while device is powered off is what I always do to get a complete healthy charge about once a month. Plugged in at 15% battery and an hour later I'm usually full or near full. Not sure if maybe it could be an issue with Safestrap. As I understand, the charging feature is fairly new to the Safestrap Recovery and implemented as an integral part of its TWRP based framework.

I guess my question is: Is anyone else experiencing this anomaly and if so have u found a fix? Moreover, could this be an impossibility for Safestrap to affect the charge capabilities of device.



Via Solitary Confined SGS3





slow charge topic




I read a post here and I didn't quite understand which charger should I buy for a quick charge.
Appreciate the help.





[Q] x10 mini got slow after upgrading to JB topic




I have loaded the Jelly Bean by following:

http://forum.xda-developers.com/show...2079747&page=4 post of January 2013.

Used the following ROM:

http://pongnamuroms.weebly.com/8/pos...y-03-2012.html

The Post said :

1. "Our phone has very less RAM to run ICS or JB in fully optimised manner. So these ROM's slightly fulfil that requirement. As the apps in these ROM's occupy very less RAM of around, 20 to 30 MB only !

2. Due to less RAM consumption, phone tends to be more responsive, smooth and faster !

3. Overall performance increases roughly around, 5 times ! "

But the issue is that My phone has become DEAD SLOW and the internal storage shows 140 MB Used and 52 MB Free.

Can somebody please guide me across- how can i make the device faster ?
[/B][/U][/B][/B]





lundi 27 janvier 2014

[Q] Slow to receive messages on Wifi? topic




I bought 2 of these phones one for a friend and one for my mum. After noticing several times while messaging my friend on whatsapp that only 1 tick would appear usually for between 30 seconds to a minute or 2, i suspected there could be some issue going on with the wifi. After testing my mothers phone I can confirm there is an intermittent problem where the phone doesn't receive a notification as soon as it's sent. There's a lag anywhere between 30 seconds and a couple of minutes.

I've tested back and forth with a bunch of other phones on the same network and they suffer no issues at all, always instant notifications. I've also messed with every possible setting in the advanced Wifi options, done restarts, tried different channel for my router etc, the lag is there at least 50% of the time.

I should point out this lag is only there when the phones screen is off and in sleep mode. Once the power button is pressed to wake all delayed messages are instantly received. I've also tested and get the same problem with hangouts so it's not a whatsapp issue. I also don't think it's a router issue as my other phones are perfect and my friend is in a different house with completely different router and has the exact thing happening.

Is this a known problem and if so is there any way to solve it? Is there an updated radio that can be downloaded and flashed to the phone without rooting, or do we just have to hope a future update will solve this small but annoying issue?

Thanks.





Slow WiFi speed? topic




Hi all.
Since the n4, I've had really slow speeds on WiFi. It would be fast at first and would slow back back down after a while. I always thought it was my router not compatible with the phone or something and just learned to live with it. I've been on cataclysm and Franco since n4

A few days ago I decided to install multirom and give stock ROM and kernel a try with xposed and gravity box. Since then I've noticed my WiFi speed has increased dramatically and stayed that way.

So now I'm wondering what's the problem? I don't wanna question Franco cos I've noticed he's repeatedly said he dont touch WiFi drivers or anything like that. So is it the ROM? Or the radio? Or something else

Sent from my Nexus 5 using xda app-developers app





dimanche 26 janvier 2014

S4 shutter really slow? topic




I noticed this phone has very horrible low-light performance (super blurry photos) with or without anti-shake enabled (I keep it off now). Night mode does help a LOT but I am wondering if anyone knows why this camera is so bad? Not trolling when I compare it to the iPhone 4, 5, HTC One X, and HTC One to the S4 that the former are so much better... Maybe Samsung phones just do not have the hardware to produce decent photos?

I do have minor shake in my hand but it was never an issue with any of the other phones I mentioned.

Anyone else experience the same issue (and yes, I have removed the plastic surrounding the lens)?





Slow 3G speed on custom rom topic




I'm experiencing a slow 3G speed on my custom rom - resurrection remix. Max download speed on my device is 1.3 Mbps while on another device with same network provider can get up to 3 Mbps.(I see with my eyes).

I also didn't see someone complaining this problem with RR rom at any build version.

Is there any solution?

I heard about reflashing modem, do I need to do it?


Sent from my GT-I9082