Nexus :: Class 6 SD Card Not Faster?
Feb 7, 2010
I got almost 6MB/s write speed with the stock SDHC card (4GB capacity) that came with the N1. I replaced the stock card with a 8GB class 6 card I had flying around. To my surprise, the class 6 card isn't faster! Write speed is still slightly below 6MB/s. The point is that I eventually want to upgrade to a 16GB. But if the class makes no noticeable difference on the N1, I might as well get a "slower" class 2 card.
View 10 Replies
Dec 3, 2013
i got a nexus 4 with kitkat, and it's plugged to charge on usb on my laptop. I plugged it in at 75%, then shut it off (just the screen, not the phone) then 30 mins later, i check its battery, and it's down to 68%.. it's not downloading or anything, just plugged, screen off. So it now discharges faster than it charges.
View 1 Replies
View Related
Aug 20, 2010
My EVO actually writes to sd card faster than it reads it. I test 3 different memory cards. The speed varies a little but the end result is the same. The write speed is much faster than the read speed. I only notice it now because I usually transfer files to the card and delete them later on. I finally made a few backup roms (4 at about 2GB total size) and tried to move to my laptop. Needless to say the process was slow (over 30 minutes). I can transfer the same files back into the card in the EVO in about 4 minutes.
Below is a same of my transfer speed in the EVO. The same card outside of the EVO has a write rate of 7-10 MBs and read rate of 17 MBs. http://i175.photobucket.com/albums/w159/fithos_bucket/snap20100818_095238.png
View 2 Replies
View Related
Nov 15, 2010
I have a HTC wildfire phone and even though i do enjoy it i find it to be very very slow and i have tried multiple things such as keeping my text messages to a maximum of 20 before deleting. Trying to delete unnesesary apps and junk off my phone. But it still runs slow, so i have joined this android forum seeking help. I can purchase a new phone an iphone 4 or HTC desire but i like my HTC wildfire and i enjoy the android operating system, the Wildfire's camera is amazing and the only thing i want to be able to do is make it faster. Will upgrading my SD card make the phone run faster?
View 3 Replies
View Related
Jan 22, 2010
Love my Eris, except for its music playback. With the SD card that came with it I have about 5gb of music. The music UI is choppy as can be, borderline unplayable at times, the lag is really bad. I've read other posts about faster cards improving performance on the player, but none really elaborating on the music playback.
View 5 Replies
View Related
May 20, 2010
When you start your nexus without a SD card inserted and start the camera, what does happen? Does the camera start and you can see but can't capture, or doesn't start at all and crashes?
View 5 Replies
View Related
Mar 3, 2010
All download applications are saved in the internal memory (Nexus One), and I dont have enough memory for more appll. Anybody knows how can I save in SD card the applications?
View 12 Replies
View Related
Jul 15, 2010
can't get my class 6 working. put all files from my class 2 onto my desktop then all those files onto my class 6. not showing that my apps are one my phone now. using apps2sd if that matters. maybe thats the problem? didn't partition my class 6
View 9 Replies
View Related
Jun 2, 2010
I currently own a class2 16gb sdhc card and was wondering if it will be fast enough for what the EVO can do.
View 2 Replies
View Related
May 19, 2010
I have a class 2 16gb sandisk card, would I notice a difference with a class 6? And would a class 6 card snap photos faster. And with that I mean no lag after the photo is taken.
View 1 Replies
View Related
Nov 20, 2010
What is the highest class and GB Micro SD card that the EVO can support?
View 6 Replies
View Related
Aug 2, 2010
My Phone will be back from repairing This week and I need new Microsd card. I want 16Gb 4 or 6 Class. Maybe you could recommend something?
View 3 Replies
View Related
Apr 24, 2010
If you are planning on buys a microSD card for your incredible just FYI make sure to get a class-6 high speed card.
View 49 Replies
View Related
Jul 17, 2010
What class is the 16gb microsd card? Just wondering if it's class 2 or 4
View 39 Replies
View Related
Jul 7, 2010
I'm creating a new class, using eclipse "New Java Class" dialog box. I can write the superclass I want (I can't find using "browse" button), but I can't write or select an interface to implement. I click "add" but ther is nothing to select. What I'm doing wrong?
View 4 Replies
View Related
May 23, 2010
Has anyone been able to do this yet? My option to move to the SD Card is grayed out for for every app...
View 4 Replies
View Related
Mar 5, 2010
Got a text of my girlfriend earlier, asking me to send her the phone number for my local taxi rank, and I couldn't find how to send a business card for the life off me! I just ended up memorizing the number.Did I just over look it in the settings, out is it not an option on android 2.1?I hope it is an option, cos it's a pain in the arse if not.
View 5 Replies
View Related
Jul 14, 2010
I'm just getting into Android development, and I have a question about communicating between a receiver class and an activity class. I'm very new to JAVA and Android so I hope I don't sound too stupid. I'm developing an application where I intercept an SMS message and then based on various elements of that SMS I might delete it once it's been saved to the inbox. I have a receiver class that intercepts the txt message, and I am also able to delete messages from my inbox with code in the activity class using a button at the moment. The problem I have is communicating between the receiver class and the activity class where the code to delete a message resides. I tried putting that code directly into the receiver class but as I'm sure most of you already know the BroadcastReceiver class doesn't seem to support what I need to delete messages. I've been searching for an answer to this for a while, but haven't been able to find anything. Honestly I'm not sure I know enough about JAVA and Android to even recognize a solution if I saw it.
View 2 Replies
View Related
Jun 27, 2010
What I want to do, is be able to access the object neoApi inside the Neoseeker class, from its inner class RunningTimer. Now, in my code, you can see what I would think to work, but when I run my application, nothing pops up. Nothing inside my TextView, no Toast, nothing at all. How can I remedy this?
package com.neoseeker.android.app;
import java.util.Timer;
import java.util.TimerTask;
import org.json.JSONObject;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;.......................
View 1 Replies
View Related
Sep 8, 2010
I'm new to Java and android development. In my application I need data which is accessible for a few activities. I've read that a good solution is to use Application class for this. So I use it like this:
public class MyApplication extends Application {
private String str;
public String getStr(){
return str;
}
public void setStr(String s){
str = s;
}
}
and I can access this variable from activity like this:........................................
View 2 Replies
View Related
Oct 8, 2010
I have just started android. I just want to know that how can i call activity class from other java class. i just want to pass class object to activity class.
public class GsonParser extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
MagazineThread thread=new MagazineThread();
thread.start();
}
public GsonParser(JsonMagazineParser Obj)
{
}
}
and i am just doing like from other class. GsonParser obj=new GsonParser(this);passing obj to activity class.how can i achieve that.
View 1 Replies
View Related
Jul 15, 2010
I'm sort of new to the Android OS 1.6, but i have a few questions on memory resources. 1. Can the SD card be used and utilized to speed up the android system like READYBOOST works on windows with external memory sources which utilizes a flash drive or SD card to be used like internal memory? 2.I'm having issues with apps & system programs running in the background. I know i refer to windows. but is there a way to kill startup apps like it's possible with MSConfig in windows without using a Startup Cleaner which force closes everything at boot and more times than not it freezes my androind seemingly forever?
View 6 Replies
View Related
Mar 6, 2010
hey folks. I started out with a nice nippy class6 8GB card thinking speed was better than space and using Spotify for tunes I'd not have many mp3 locally. Now I need more space and want to switch to a 16GB card.My question: can I just copy everything off of my 8GB onto my new 16GB when it arrives? be great not having to download 5GB of Spotify cache all over again.
View 4 Replies
View Related
Dec 7, 2013
I have been issued with a new credit card after my old one was lost but i have no idea how to update it on my nexus 7.
View 1 Replies
View Related
Aug 23, 2012
I want to use my phone as access card (that my phone recognizes with nfc), is there a way to copy that card and mirror it with my phone? My phone is a galaxy nexus
GT-I9300
View 5 Replies
View Related
Nov 10, 2013
I flashed my nexus 4 today, wiped everything and then wanted to install cm from my sd card. But when tried it said: SD card cannot be mounted. When I try to adb sideload my computer tells me that there is no device found. I tried it with both CWM and TWRP and nothing worked.
View 4 Replies
View Related
Mar 3, 2010
This morning when i woke up..all my contacts were gone for whatever reason..i thought to myself sigh no buggy..ill just re-sync my FB contacts and import my other #s from my old sim card..the FB contacts worked but when i try to import the #s from my Sim card it says "successfully imported" but the Contacts don't show up!! Mind u Ive done this several times before and its worked. Idk why they're not showing up now.
View 9 Replies
View Related
Aug 8, 2013
So I just bought a HTC Nexus Ones as my new Android phone. I've been preparing for this new phone, such as knowing that it's old, I'm going to flash a custom JellyBean ROM to it, ect. Anyways, I've been reading that you cannot install applications to the SD card of a Nexus One, only to the very small 512mb internal memory. I'm wondering what I need to do to be able to install all the apps and games I download and install to the SD card, so I do not run out of space.
View 3 Replies
View Related
Nov 25, 2013
Bought a nexus 5 and cut and pasted 6 lecture recordings from my old GS3 to my nexus 5. Rooted the nexus 5 and deleted (accidentally) all the recordings. Is there any data recovery program or tool that I can use to retrieve them?
So, ctrl+x from gs3 ext memory card to ctrl+p onto nexus 5 internal storage. Wiped nexus 5 and now can't be found anywhere.
These recordings are extremely important (I know I lost them, I dont know what I was thinking)...
View 2 Replies
View Related
Oct 29, 2011
When I boot up my Nexus One, it takes <Sandlot>FOR-EVV-ERRR</Sandlot> to mount my SD card. I've got most of my apps on that card, so it's super annoying!
Like I've said, I've got a bunch of apps (40?) loaded on to this card, a few documents, 4 CDs... random stuff. I haven't formatted the card in a looong time... nor have I wiped the phone in a loooong time. I am a crackflasher - I flash a new ROM every day, but I VERY RARELY have issues, so that's why I haven't wiped in so long. I would be happy to just mount the SD manually through the terminal when I need it to.
The phone is a Nexus One. I'm running a CM7.1(or whatever it is) based ROM and kernel. The SD card is the 16gig one that came with the phone.
What's the terminal command to mount the SD card to the phone? So the ROM can access it?
View 7 Replies
View Related