- 12-04-2012, 11:15 PM #51
Re: Not using external SD Card
Yeah, it seems like those suggesting simply moving files to the extSD using the file manager have never actually tried it. Sure, you can move some files, but they become unusable because the internal SD apps won't search the extSD for data files. For instance, if I download a movie from the Google Store and move it to the extSD, I can no longer view it using the Google Movies app or any other app I've tried. And it doesn't take long to use up all of the space if you download tv series to watch on planes, etc. Google needs to change/fix this problem.
- 12-04-2012, 11:40 PM #52
Re: Not using external SD Card
that is because of the DRM on the movie. I have DRM free movies on my sd card that I play all the time.
Google IS the problem with this one. They want the SD card gone. - 12-05-2012, 03:23 PM #53
- 12-05-2012, 07:09 PM #54
Re: Not using external SD Card
OMG!!!! Just tried to send e-mail via Samsung's customer support site. Doesn't work after going thru all their requested info, typing the message and trying to send,,, the window to display/document the model number of the unit won't open and the message can't be submitted without the info. Samsung is gonna get a call.
BTW, tried getting to them via Face Book too, and the Galaxy Tab 2 7.0 is not even listed there.
I fear we have purchased an orphan product. - 01-27-2013, 04:18 AM #55
- 01-27-2013, 10:28 PM #56
- 01-27-2013, 10:30 PM #57
- 01-31-2013, 10:21 AM #58
Re: Not using external SD Card
Hi George.
For a map app that displays where you are, try ORUXMAPS. It's totally free and it lets you set it up to store offline MAPS (google, Topo, satellite) to your extsdcard.
Its not a vehicle GPS navigation app, its more of a simple map display that puts an icon on the map showing where you are on the map. Visit their website for help downloading various maps or even using a free program to make downloaded pictures of maps work with it.
As far as using the extsdcard, Samsung made it an available option, now the app developers need to make their apps allow it's use for storing their data (like OruxMaps and Office Suite Pro and Mort music player have done.
Lack of the option to use the extsdcard more is due to lazy app developers, not Samsung. IMO.
Although, in the app developers defense, the internal memory is ALWAYS there, so in their eyes their app is more reliable and will still work even if a user likes to swap sdcards back and forth a lot.
So, bottomline. Shop for apps that allow you to set them up to use the extsdcard for their data/file storage.
And, if you have a favorite app, email them and ask them to add this feature. Some devs are very responsive this way. However, don't expect much of a response from larger corporations that are concerned about digital rights management (DRM). They prefer to use the PROTECTED internal memory.
I edited this post on Feb 2nd for typos and additional info.
Enjoy your tablet. I do.Last edited by dmtchico; 02-02-2013 at 11:03 AM.
- 02-16-2013, 04:17 PM #59
- 02-18-2013, 06:44 PM #60
Re: Not using external SD Card
I have had my tablet for a week now and I love it. But the biggest downfall Samsung has did to the Galaxy tablet, is not to let the apps goto the external sd card. Samsung if you're reading this you need to change it please. You need to do an upgrade on the program if not I'll be going to the Apple or something else.
- - - Updated - - -
I have had my tablet for a week now and I love it. But the biggest downfall Samsung has did to the Galaxy tablet, is not to let the apps goto the external sd card. Samsung if you're reading this you need to change it please. You need to do an upgrade on the program if not I'll be going to the Apple or something else. - 02-24-2013, 08:40 PM #61
- 02-27-2013, 03:58 AM #62
- 04-21-2013, 02:40 AM #63
Re: Not using external SD Card
You can use your external sdcard to install your applications and games(gameloft,glu,ea...) with huge data cache and this works pretty well but there are 2 conditions to do so...first your tablet needs to be rooted and second you need to download an application called directorybind. With this application you can bind any directory you want to the external sdcard it will move the data from the internal memory to the external sdcard and it will mount the new directory with a link to the one from the internal memory and this works perfectly. With my class 10 32g sdcard my games seem to load faster too enjoy your tablet now
- 04-28-2013, 04:02 AM #64
Re: Not using external SD Card
quoting
01-31-2013, 10:21 AM
dmtchico "Lack of the option to use the extsdcard more is due to lazy app developers, not Samsung. IMO."
Before fingers get pointed, please understand that Android App Developers are at the mercy of the SDK API given to them, and that the request to create a directory & files for External Public Storage is sent to ~/storage/sdcard0.
(symbolic link equivalent to ~/sdcard and ~/mnt/sdcard0)
i.e. assuming we have set the write permission in the app manifest (this request for app permissions is what you see before you install an android app)
we check that the 'external storage' is mounted for read/write
if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) {
and then to retrieve the value of the Pictures subdirectory on 'external public storage',
In API Level 8 or greater, use getExternalStoragePublicDirectory(), passing it the type of public directory you want, such as DIRECTORY_MUSIC, DIRECTORY_PICTURES, DIRECTORY_RINGTONES, or others. This method will create the appropriate directory if necessary.
If you're using API Level 7 or lower, use getExternalStorageDirectory()
This is in the SDK, there is nothing developers can do to change that, they can only work around it by hard coding specific mountpoints for every OEM who chooses to mount the EXTERNAL sdcard on a separate mountpoint, such as /storage/extSdCard for Samsung Galaxy S3 on Android v4.1.2
That obviously requires knowledge of all OEM's way of handling storage naming conventions, at all variable SDK levels and cutover points of new methods and deprecation.
Please also understand that the point of using the SDK conventions is the antithesis of writing hardcoded workarounds.
Just as an example, Android SDK frowns on hardcoding variable string assignments inside code, it nags developers to put all static values into a strings.xml file and to refer to variables stored in that abstracted file.
Android SDK itself is bad enough with deprecation where developers have to code at least two logic paths for both pre and post deprecated target API levels and also code precompiler directives to avoid getting more warning or error nags in the IDE such as Eclipse...
I have been trawling forums and am still looking for a non-rooted workaround for this, but it seems like hardcoding is the only way, and adding an option for the user to manually choose their own save locations via a directory browser widget in a separate settings activity.
And how many users would know the difference between ~/storage/sdcard0 and ~/storage/ExtSdCard or to know to use it in the first place rather than ~/sdcard or ~/data or any number of other directories?
The Android SDK link even says that this 'external storage' may in fact refer to a partitioned section within internal storage:
NOT Helpful.
Update 2013/04/28 - found this as the best answer for developers to use 'removable' external storage -
This other reference is full of condescension to the developer from some posters who smugly point out that 'external storage' in Google's 'original definition' has never meant 'removable storage'...
They also advise that the 'need' to use removable storage is 'flawed' and
"The devices are fine -- your expectations are not. Please fix your expectations."
WTF? Seriously?
I acknowledge this does not help the OP who just wanted to know how to save files to a 'removable' sdcard rather than to the device's internal 'external' storage, but it should help any developers reading this looking for same solution as I am.Last edited by Morte Descovich; 04-28-2013 at 06:15 AM.
- 05-03-2013, 12:23 PM #65
Re: Not using external SD Card
Today I saw a Galaxy Tab 2 7.0 at a great price. I decided to do a little forum reading first.
First, my Toshiba Excite has exactly the same problem. Second, the GT2 isn't much of a bargin at any price with 8 gb and no way to use the ext sd for data storage.
It's a shame. - 05-04-2013, 10:25 PM #66
- 05-04-2013, 10:27 PM #67



Reply


































