Android resources - framework for providing different layouts or strings for android projects.

learn more… | top users | synonyms

1
vote
1answer
36 views

Cannot find my r.java file in android

Iam a newbie to android.I had crested an project to check the textfields avaiable in android. I added some resources in string.xml and build the project. My R.java is not generated automatically. I ...
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, ...
331
votes
59answers
344k 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; ...
0
votes
1answer
30 views

Save an Image in app folder

I'm new in Android development and I have an app that saves a 'jogador' (player) record with some attributes (name, birthday...) and a photo. When the user picks the image from gallery, I populate an ...
0
votes
0answers
7 views

Programmatically getting Resources from APK that were originally in Strings.xml?

There's an answer to a question about programmatically unpacking the AndroidManifest.xml file from a compiled APK here. I've used it to mostly read the manifest but there are some pieces that are ...
4
votes
3answers
444 views

Android layout error: “Resource id <res_id> is not of type STYLE (instead attr)”

I'm seeing an error I've never seen before w/ Android that's preventing some of my layout files from rendering in Eclipse. They render fine at runtime. The error that shows up in the graphical layout ...
0
votes
0answers
24 views

Android : XXHDPI Device Reads XHDPI Values

I have an app that will support xxhdpi devices but I cannot make it work on emulator (I don't have a real device with me and I want to test it on the emulator.) This is the configuration of the ...
0
votes
1answer
17 views

How to read custom dimension attribute from java code

I made my custom component just putting few TextViews together. Now I want to be able to init my custom control directly from code, passing text sizes independently for each of of TV's My attributes ...
0
votes
1answer
529 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 ...
4
votes
0answers
87 views

Random android.content.res.Resources$NotFoundException

For some time we have been receiving weird android.content.res.Resources$NotFoundException exception from our production application (via Play store). The error commonly appears while trying to ...
0
votes
0answers
36 views

How to set Intent and Configuration before starting activity in Robolectric

My Activity -that i want to test- has to have extras before starting which had to be located in Intent. How can i add them before lunching the activity in testing? And the same function is also ...
-1
votes
0answers
16 views

get Activity result inside custom layout class

I have my custom ViewGroup class. there are some buttons inside. i need to change background of buttons from gallery. this is my code inside my onClick(View v) method. Intent photoPickerIntent = new ...
0
votes
1answer
18 views

How to ignore resource xml files in android project settings

I am developing an app for Android phones and Tablets. Currently I am maintaining two separate library projects for phone and tablet. But most of the code except for some UI and other target specific ...
-4
votes
2answers
49 views

Can I use 2 String resource in on same TextView in layout file? [closed]

I have 2 string resouces file: <string name="label_1">Dumb1</string> <string name="label_2">Dumb2</string> In TextView, I want TextView shows static text: Dumb1Dumb2. How I ...
0
votes
1answer
27 views

Equally distributed icons in an Android Progressbar

I'm trying something that would sound fairly easy to implement. However, it doesn't respond as expected. I'm using a Progressbar to draw a 5 state bar, where the user can click on any of the states to ...
0
votes
4answers
1k views

Extract app icon from apk file

I am in need of extracting the app icon from an apk-file. I just need one icon, i don't want to extract everything else in the apk. The files are easy to get hold on, but how do I determine which icon ...
0
votes
3answers
819 views

Resource not found String resource ID

I am making an which app which have 2 android project; 1st project is library project and 2nd project is my main project. project-1 is working fine but when I am adding it in my Project-2 as library ...
0
votes
0answers
20 views

Reuse assets/ressources from “theme application” into my application

I just made some research on the web and I did not found anything on the subject. I am currently developing a launcher application. One of the most requested feature is to be able to customize the ...
0
votes
1answer
40 views

How to create a string resource programatically

I am using WebTrends analytics in my app. (Ref-http://help.webtrends.com/en/android/) The WebTrends APIs are written in such a way that the initialization happens ONLY from resources file. They ...
0
votes
1answer
23 views

Tool for editing dimens.xml (Android)

I'm working on a project where I have many dimens.xml files for the different screen sizes and asked myself whether there is a tool like the Sequoyah Localization Editor but for dimensions. To be ...
1
vote
0answers
22 views

Falling back on Android resource values for attribute defaults in a microformat

I'm designing a microformat to be consumed by my Android client, where I extract some elements containing menu commands and other metadata before pushing the remaining content into a WebView. I ...
34
votes
4answers
10k 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, ...
0
votes
1answer
18 views

Defining colours as resources in mono for android

I am worried that this is a duplicate question, but I have read these three questions and I'm still at a loss: Setting background color from colours.xml throws invalid operation How to define ...
0
votes
2answers
42 views

Linking two projects, other R.java not generated

I have been writting an app that is bulid of two projects. They were working fine, but lately I moved my project to new computer and problems with linking these two occured. I moved them manualy, on ...
0
votes
0answers
42 views

Different values of screen density

I've defined an item in values/dimen.xml with the value 48dp. When I set it to height of a view, in View Hierarchy Dump tool in eclipse, the real height of the view is 72, which is 48*1.5, and seem ...
0
votes
2answers
32 views

How to select a drawable image by matching a string value to the image name?

I have an arraylist of strings, I need to randomly select an index and if the string value was "bear", then set background of button to bear.jpg. OK, my research shows that resources are accessed by ...
0
votes
1answer
29 views

Get the resource id for the drawable reference used in styled attribute

Having this custom view MyView I define some custom attributes: <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="MyView"> <attr ...
0
votes
3answers
29 views

Why Android cannot deal with Resources name conflict between Project and Library?

I have a project A that referenced by Library B, A and B have the same name and type, but their value are different. I think aapt should deal with this issue that make sure project and library access ...
0
votes
0answers
18 views

Is there an easy way in eclipse to edit one version of icon and reflect the changes for all resolutions (hdpi, mdpi, xhdpi et al) at once ?

While working on Android projects I sometimes feel the need for editing my icons to cope up with the changes in theme and or background of activity / view that is going to hold it. The way I do it ...
1
vote
4answers
57 views

What is Faster Using Hard Coded InLine String or String in Strings.xml

I have always tried to use the resource in Android to declare my strings in Android, ever since I had a translation issue. But there are times I don't need to declare strings, like the strings I use ...
0
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 ...
18
votes
2answers
13k 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?
1
vote
1answer
35 views

Android App crashing and not working correctly on smaller devices

Here is my problem , i created app for android and was always testing it on my phone with 480x800 dimensions, and app works great, in landscape and portrait mode. I used relative layout cause it ...
0
votes
1answer
27 views

resources not linked into final APK

I can run my app fine in the emulator and with the same source compile a final APK, but on another computer with exactly the same environment (Android-SDK, Eclipse and sources!) copied there, the ...
0
votes
0answers
22 views

Accessing custom attributes in string resource

I would like to extend the ArrayAdapter class and override its getView() so that I can populate a ListView with views that are defined depending on the strings. So, something like this: <string ...
1
vote
4answers
81 views

findViewById() returns null - tried EVERYTHING

I give up... not even my professor knows why this is happening. The problem is: No matter where or how I call for this layout's components, they always return null. LAYOUT: search_layout. 2 ...
0
votes
0answers
59 views

Uri and Filepath for all the raw resources android

I have few files in raw folder of application, i need to have both Uri and filepath for those/all files present in the raw folder so far, i am able to print all the names of files in raw folder(from ...
0
votes
0answers
67 views

Android Resource not found exception

Hi I am developing an android app,and as soon as i try to install the app on my tablet it gives a force close with a error saying , java.lang.RuntimeException: Unable to start activity ...
33
votes
4answers
14k 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 ...
1
vote
1answer
68 views

Android ImageView set image according to tag

I was wondering if there was any way in Android to set an ImageView's image dynamically by using its tag. Ideally it would be like this: // image_view_style.xml <selector ...
0
votes
1answer
32 views

How to load a picture from the resource and html into webview?

I want that the webview display the picture from the resource and html code from the database but only the html code from the database works fine. WebView wv = (WebView) findViewById(R.id.wv); String ...
2
votes
1answer
65 views

Background resource on Gridview item on scrolling

I have a GriView which is populated with items and on clicking the item on the gridview I change the background resource to an image I have in res folder. My problem is when scrolling and going back ...
2
votes
2answers
37 views

Android - Values Depending on Language & Screen Size

Please excuse my bad English, I'm French! In my Android project, I want to have different values for both languages (es and fr) AND screen sizes. I can't find anything about that. Can someone help me ...
0
votes
1answer
307 views

How to create ImageView animation sequence from drawable resources?

I am trying to load 11 images from the drawable resources and display them in an ImageView with a delay. Practically doing something like AnimationDrawable, since creating such results in an ...
3
votes
1answer
50 views

Where is my resource file

I've a problem with android and Storage Options (Internal Storage). I added a SSL certificate in the "raw" directory and i want to write in, into the storage. In the moment I'm trying it with this ...
-4
votes
0answers
79 views

Completely new Android project, no R.java being created

I have just installed ADT Build: v21.1.0-569685. I am running Linux 3.5.0-26 generic, Ubuntu in a Kubuntu (4.9.5) environment if this is any help at all. I created a new project using Android 4.2.2 ...
0
votes
1answer
22 views

Referring to multiple string resources

Is there a way to refer to multiple resources inside another? It's easier to just show some sample code. <resources> <string name="app_name">AppName</string> <string ...
0
votes
0answers
43 views

Android Drop Shadow occasionally distorted

I am not sure if this is an Android programming question, or if it is a hardware issue on the device. I am using jfeinstein's SlidingMenu. Any drop shadow inside it becomes distorted after the app ...
0
votes
1answer
25 views

Integer resource not what expected

I have the following interger resources in my strings.xml file <item type="integer" name="pID" format="integer">374</item> <item type="integer" name="vID" ...
2
votes
0answers
65 views

Resources$NotFoundException File res/drawable-xhdpi/action_bar_search_icon.png from drawable resource ID #0x7f02007f

I was checking my bug reports and from time to time we get this bug report from our app. I can't pint point what is the actual problem. This resource does exist, most of devices work fine but some ...

1 2 3 4 5 9