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

learn more… | top users | synonyms

1
vote
1answer
24 views

Get object File from a file in raw folder

What i want to do is very simple : String dataDir = getActivity().getPackageManager().getPackageInfo(getActivity().getPackageName(), 0).applicationInfo.dataDir; Log.e(TAG , "dataDir = " + ...
0
votes
1answer
21 views

Is the file under “res” secure enough after compile?

I want to retrieve some data from a xml file under res/xml. (kind of like reading plist) Is it safe to save some confidencial information in that file? Is it possible to get the xml file after ...
1
vote
1answer
43 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 ...
0
votes
1answer
32 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
1answer
59 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
21 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
0answers
10 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 ...
0
votes
1answer
743 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 ...
0
votes
1answer
50 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
17 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
21 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
51 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
0answers
22 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 ...
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 ...
0
votes
2answers
48 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
1answer
19 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
1answer
27 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 ...
0
votes
0answers
44 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
33 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
35 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
34 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
58 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 ...
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
0answers
23 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
87 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
70 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
71 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 ...
1
vote
1answer
74 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
33 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
71 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 ...
3
votes
1answer
51 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
106 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
46 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
72 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
vote
2answers
88 views

Android: Remove unused resources when releasing

I've seen that's possible to detect unused resources (especially media resources which take some space) here android-remove-unused-resources-before-shipping and here ...
2
votes
2answers
21 views

Testing for Resources such as Drawbles and Background

I need to see if there is a way where I can test for what background a button has. For example, here is my psueduo code: if (button background is `R.drawable.black`) { button.setBackground(to ...
2
votes
0answers
39 views

Non-translatable resources should only be defined in the base values/ folder - Android Export APK

I get the following error when I try to export my Android project to an APK: Non-translatable resources should only be defined in the base values/ folder. The here is the code it is having an issue ...
0
votes
0answers
60 views

Shadow in a custom ProgressBar

I'm customizing a progress bar with the following drawable: <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > ...
0
votes
1answer
28 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
142 views

Unity3D: Android Plugin Resources issue (MoPub and SocialNetworking Prime31 Plugin)

I have the same problem as here and here, with use more than one plugin that uses resources in the same project. With the public.xml I could not solve the problem. :( Is there perhaps a good general ...
2
votes
1answer
85 views

Drawables pulled from wrong resource folder on rotation

Pulling my hair out here. So I'm working with an application that has several types of drawables, and I have them in a structure like so: res/ //Portrait resources drawable-mdpi/ ...
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
43 views

External library jar incomplete

I'm trying to add an external jar library to my Android project. It compiles and downloads to my device correctly but I'm getting the following logcat: 04-11 08:17:16.849: E/AndroidRuntime(16053): ...
3
votes
1answer
78 views

Convenient use of Android XmlResourceParser?

When I need to access a compiled Android XML resources, it seems that I cannot use openRawResource(resId) since it gives me a compiled binary. The only way I've found to get the XML is to use ...
0
votes
1answer
58 views

Multiple string resource files with similar keys in Android

I have an android application that needs to display strings found under the resources, but there can be multiple strings.xml files, i.e. strings1.xml, strings2.xml and so third. The string key can ...

1 2 3 4 5 9