Android resources - framework for providing different layouts or strings for android projects.
353
votes
64answers
367k views
R cannot be resolved - Android error
I just downloaded and installed the new Android SDK. I wanted to create a simple application to test drive it.
The wizard created this code:
package eu.mauriziopz.gps;
import android.app.Activity;
...
177
votes
7answers
118k views
Android: Getting source code from an APK file
The hard drive on my laptop just crashed and I lost all the source code for an app that I have been working on for the past two months (I know I am an idiot for not backing it up)
All I have is the ...
158
votes
8answers
30k views
Can The Android drawable directory contain subdirectories?
In the Android SDK documentation, all of the examples used with the @drawable/my_image xml syntax directly address images that are stored in the res/drawable directory in my project.
I am wondering ...
23
votes
5answers
40k views
Android how to get access to raw resources that i put in res folder?
In J2ME, I've do this like that:
getClass().getResourceAsStream("/raw_resources.dat");
But in android, I always get null on this, why?
20
votes
2answers
14k views
How can I get a resource content from a static context?
I want to read up an xml file before I do much of anything else like setText on widgets, so how can I do that without an activity object to call getResources() on?
0
votes
2answers
2k views
Passing image from one activity another activity
There are similar questions on SO, but none worked for me.
I want to fetch clicked image in Activity1 and display it in Activity2.I'm fetching image id of clicked image like this:
((ImageView) ...
0
votes
2answers
648 views
List Adapter setting - How can I not to repeat the list item layout resource?
I have made a ListView with an ArrayAdapter. It works. But I had to put the resource id for the item layout twice: in the adapter definition and in the getView, in the case when the View parameter is ...
12
votes
2answers
4k views
What is the use of the res/values/public.xml file on Android?
I've searched on Google, but couldn't find any relevant results.
I also checked the official Android docs and this page (for all the available resources) was all I could find. The relevant links (to ...
2
votes
4answers
2k views
Accessing Resources without a Context
I'm trying to put configuration, such as URLs/etc, into a resource folder for a utility class to use. However, I don't want to pass the Context from the activities everywhere. I would like to be able ...
15
votes
4answers
3k views
How does the mapping between android resources and resources ID work?
It is magical for Android to locate the proper resource just through the R.id.XXX.
AFAIK, the resources are compiled to binary format, so how does this mapping logic work under the hood?
Maybe it ...
28
votes
3answers
9k views
Lint: How to ignore “<key> is not translated in <language>” errors?
I can't compile/debug our Android app, because the localization files are not perfect yet.
Eclipse's validation tool Lint create errors saying:
newCardsOrderVals is not translated in ar, bg, ca, ...
36
votes
10answers
6k views
Are there conventions on how to name resources?
Are there conventions how to name resources in Android? For example, buttons, textViews, menus, etc.
6
votes
4answers
13k views
multilanguage app: best way? [closed]
Which is the best way to have a multilanguage app?
Should I create a set of strings written in my language and then use an google api that translates online on-the-fly? Any code example?
And, how to ...
5
votes
3answers
14k views
ListView whose id attribute is 'android.R.id.list' Error when I have the ListView id set correctly
I have a Listview with a custom adapter. I am getting the standard
Your content must have a ListView whose id attribute is 'android.R.id.list'
error, however, My ListView has an ...
11
votes
3answers
11k views
Store static data in Android - custom resource?
I'm new to Android development, and I've been playing around with it a bit. I was trying to create a program that has a small database-like collection of never-changing data. In C#, my currently ...
22
votes
1answer
5k views
The reason for Assets and Raw Resources in Android
this is some sort of a philosophical question .. .
I'm in the mid of my studies in the Android world and I just covered the Assets and Raw resources.
I'm trying to understand the reason for using Raw ...
10
votes
1answer
1k views
Detect fling gesture over clickable items
Imagine a layout with 4 buttons
_______________________________
| | |
| A | B |
|______________|________________|
| | ...
38
votes
4answers
14k views
Android XXHDPI resources
The Google Nexus 10 comes out shortly, and is the first device to use xxhdpi resources. It sports a display density of about 300 DPI (according to the Nexus 10 website and this calculator).
However, ...
19
votes
3answers
16k views
Setting webview background image to a resource graphic in Android
I'm trying to set the background of a webview to a drawable image resource in Android.
From the sdk it seems something like this would work but it doesn't.
WebView web = (WebView) ...
35
votes
4answers
15k views
getString Outside of a Context or Activity
I've found the R.string pretty awesome for keeping hardcoded strings out of my code, and I'd like to keep using it in a utility class that works with models in my application to generate output. For ...
11
votes
2answers
2k views
Android resource selection layout- and values- inconsistencies
The issue I am experiencing indicates that the resource bucket being selected for a given activity's layout XML is inconsistent with the resources being selected from the values folder despite the ...
2
votes
3answers
868 views
Android dynamic String Resources
in my app I do a web request that returns some result code, e.g. 105. I have string resources that look like that
<string name="r105">O.K.</string>
<string name="r106">Something ...
5
votes
3answers
556 views
Controlling view visibility from a resources
I have a layout that contains two ImageViews. I want one of them to be visible in portrait and the other in landscape. How do I achieve it using resources? (I know how to set it programmatically for ...
3
votes
1answer
7k views
Warnings in xml resources
Yesterday I installed ADT plug-in again as I was having problems (intermittent) with the version I already had. The thing is, I'm not getting warnings in all my xml resources. I am pretty darned sure ...
11
votes
3answers
13k views
How do I use obtainStyledAttributes(int []) with internal Themes of Android
So I have looked around and found out that android.R.styleable is no longer part of the SDK even though it is still documented here: http://developer.android.com/reference/android/R.styleable.html
...
9
votes
5answers
6k views
how to get images dynamiclly from drawable folder
Guys i need to acheive the following please help i am stuck.
i have an array like this
int image[] = {R.drawable.d002_p001,R.drawable.d002_p002,R.drawable.d002_p003,
...
3
votes
3answers
1k views
Getting resources of another Application
Assume I've got 2 Application A and B.
I want to access resources (drawables, images, strings) of an B application from A application. How would I do that?
Edit:
You can also designate an ...
0
votes
1answer
908 views
Obfuscating resource strings that may give away too much information about programming logic
I currently use a combination of LVL and Proguard as a first line of defence against piracy.
However, what about the resource strings? For example, if there is a resource string like "License check ...
5
votes
2answers
1k views
Is it possible to read a raw text file without Context reference in an Android library project
I could put a text file in folder res\raw of a library project, but reading it seems to require a Context reference. Could anyone shed some light on this?
4
votes
2answers
467 views
How to find out IDs or names of preloaded system drawables (bitmaps) from memory dump
I'm analyzing memory usage of our app, and has found strange Drawables, which constantly "eats" few megabytes of heap. Here are few screenshots from MAT:
Dominator tree with 2 pretty big bitmaps
...
4
votes
1answer
898 views
Styling Sherlock Action Bar
I'm trying to set an image as background of the Sherlock Action Bar, but even if the it's 720 x 112 px, it seems like the image doesn't stretch.
The white part is still part of the Action Bar, as the ...
2
votes
2answers
397 views
Android resources “best match” fallback logic
I've read the docs about Android Resources and I think I've understood the best-matching logic used by android to identify in which directory a particular resource should be searched first.. Supposing ...
2
votes
2answers
1k views
Different resources for WVGA800 and WVGA854?
Got this really stupid problem:
Can find the proper name for the android folder for WVGA800 resources.
I've created a folder for WVGA854: drawable-normal-long-hdpi
It worked totally fine.
For WVGA800 ...
1
vote
1answer
1k views
issue in string array in xml file: Multiple substitutions specified in non-positional format and Found tag </item> where </string-array> is expected [duplicate]
Possible Duplicate:
Android XML Percent Symbol
hi mate i have an array in file xml:
<string-array name="type_data_graph">
<item>Veichle speed (Km/h)</item>
...
1
vote
5answers
267 views
ImageButton background swiching on it's own? Drawables gone wild?
I having an issue where the ImageButton background is being drawn with a different drawable from one of my resources. I'm setting the background to be transparent but on some cases it's picking up ...
7
votes
3answers
224 views
Which part of Android is in charge of picking a correct resource profile?
I have a weird problem.
Before you come to an idea to lash out on me, I am working on a custom Jelly Bean. Therefore the "usual nice approaches" might not work here, and dirty workarounds have to be ...
4
votes
3answers
345 views
Where to store sensitive global information such as API keys in Android application?
I need to store some sensitive information in an Android application. If I put it in a resource file, it appears that it is trivial for another app to be able to browse and read that file simply by ...
4
votes
1answer
835 views
android: how to add children from an xml layout into a custom view
In my xml layouts I have a custom view in which i will put some children like:
<com.proj.layouts.components.ScrollLayout
android:id="@+id/slBody"
android:layout_width="700dp"
...
3
votes
3answers
2k views
Android Studio cannot resolve R in imported project?
I'm trying the new Android Studio. I've exported a project from eclipse, using the build gradle option. I've then imported it in Android Studio. The R.java file under gen has a j in a little red ...
2
votes
1answer
100 views
Getting ResourceNotFoundException after device rebooted
I am having Boot Completed Receiver in my application and after Reboot completed, inside my Boot Receiver I am starting an Activity. In that I am getting ResourceNotFoundException on setting layout.
...
2
votes
1answer
372 views
Android: Standards for prefixing files in the RES directory apart from ic_?
anyone know if there a list of standard prefixes that we need to use (or advisable to use) in the RES directory. i.e. Android recommends ic_ for icons, which is great and i am following that.
But ...
1
vote
1answer
127 views
Efficient way of creating Bitmap out of Drawable from res (BitmapFactory vs Type Casting)
Which method is more efficient for creating Bitmap out of Drawable from resources?
Bitmap myBitmap = BitmapFactory.decodeResource(context.getResources(),
...
1
vote
2answers
763 views
Access PDF files from 'res/raw' or assets folder programmatically to parse with given methods
Access PDF files from 'res/raw' or assets folder programmatically to parse with given methods
Explanation:
Right now this program accesses a file from a file manager that takes the selected files ...
0
votes
2answers
117 views
Cannot resolve R.java, duplicate class
I just start using Android Studio for a week and it works great for me, but when I started Android Studio today I get the error: 'error: duplicate class: mypackage.R'. I saw this error before when I ...
0
votes
1answer
274 views
Android res/layout Folder not included in the APK file (but included in the ANE)
I'm having a problem with resources on an Adobe ANE Android extension:
android.content.res.Resources@NotFoundException: id.myView
I have a xml layout file, which is included in the ANE file ...
0
votes
2answers
391 views
Share drawables between applications
I have implemented plugin system in my applications. Plugins exist as the standalone applications.
What is the best way to access drawables from plugins in main application ?
0
votes
1answer
135 views
Why Android uses resources from the higher resource instead of a lower?
There is an app which I want to adopt to xhdpi resolution phones. So I made resources for that resolution and all went fine regarding the xhdpi phones.
I have a test mobile phone which is normal ...
0
votes
1answer
809 views
dynamic Bitmap drawable in android
I am wondering how i can set a Bitmap drawable resource from a dynamic variable that is the image name/ type string:
public CustomIcon getView(int position, View convertView, ViewGroup parent) {
...
-1
votes
2answers
810 views
NullPointerException at android.content.ContextWrapper
When I try to get a color via getResources().getColor(R.color.yellow) in a normal Activity I get this exception:
07-12 11:58:38.019: E/AndroidRuntime(3233): FATAL EXCEPTION: main
07-12 ...




