0
votes
3answers
41 views

Android manifest errors

I tried to create application name by my language but I got errors from android manifest Tag attribute package has invalid character '�'. <?xml version="1.0" encoding="utf-8"?> <manifest ...
0
votes
0answers
23 views

Conditional XML style hierarchy

In the styles.xml file I built a hierarchy of styles: <style name="base">....</style> <style name="drawables" parent="@style/base">....</style> <style name="text" ...
1
vote
0answers
20 views

AttributeSet value returns @2131296269 - what is it and how to use?

If I define some view in xml like: <com.android.view.AlphabetButton android:id="@+id/buttonA" android:layout_width="wrap_content" ...
0
votes
0answers
24 views

android eclipse custom attribute suggestions in xml

I've created a custom attribute for a custom view and added few enum types to the attribute as possible values <enum name="value1" value="1" /> <enum name="value2" value="2" /> <enum ...
0
votes
1answer
17 views

Define a required attribute for <declare-stylable>

Is it possible to define the stylable attributes as required? (as in XSD schemas) <declare-styleable name="PieChart"> <attr name="name" format="string" use="required"/> ...
0
votes
0answers
38 views

android swipelist missing attributes

I have the same problem that this user : the other question But I have the name of the class in my layout xml file correctly typed, and in the xml view it does not give any error, but when I change ...
0
votes
1answer
58 views

How do you access standard custom xml attribute?

I'm trying to create custom xml attributes, which can be accepted by more classes then one. I've found (among others) this helpful answer: Defining custom attrs But how to i access the attribute ...
1
vote
3answers
33 views

Center a button or image

I'm using Eclipse to create an app for Android. I know you set attributes such as centering a button or image in the XML file but How would you do this in Java?
1
vote
1answer
75 views

How to set restriction on XSD for id attributes

If I wanted to define an XSD file for: <state id="1" name="S1"> <state id="2" name="S2"> <state id="3" name="S3"> <transition fromState="1" toState="2"> How can I restrict, ...
0
votes
1answer
50 views

Android xml attributes equivalent to Java code

is there any documentation page that shows which android XML attributes are equivalent to android Java code? for example I have a TextView something like: <TextView android:id="@+id/tview" ...
0
votes
0answers
120 views

How to change textCursorDrawable programmatically

There is an xml-attribute android:textCursorDrawable for TextView and its children, which allows you to modify the appearance of the text cursor inside the view. But for some reason there is no ...
6
votes
3answers
87 views

How do I avoid typing “android” for every attribute?

I am new to Android development and am also a designer doubling as a front-end guy. How can I avoid having to type android: every time I add an attribute? In other text editors (TextMate), I can ...
0
votes
2answers
47 views

Get the name of a custom attribute from attrs.xml

I have created custom attributes in attrs.xml : <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="StarWars"> <attr name="sw_jedi" format="string" ...
0
votes
1answer
45 views

Where are admob resource identifiers defined?

In the old versions of admob SDK, you had to manually add a attrs.xml file where the admob attributes where defined (adUnitId,adSize etc..) But it is not necessary anymore in the current version of ...
0
votes
2answers
105 views

use android:onClick with methods from another activity?

I have menu xml which included in my activities, im using onClick attribute instead of binding on every startActivity. My question is, how can I define on the xml onClick attr to call methods which ...
1
vote
0answers
34 views

Generating fast JSON by EditableText Fields

I would like to create something similar to Inputs of HTML form. Each input has a name and value attribute which is nicely playing together. However so far I have just found android:tag which might ...
2
votes
2answers
247 views

Android custom attribute for TextView [duplicate]

Possible Duplicate: How to read custom attributes in Android Recently I read about custom attributes. I want to add a custom attribute to TextView. So far I have: attr file: ...
1
vote
1answer
129 views

Constant Value Between XML and Java

I know this is a simple question, so hopefully it won't be a bother to anyone. How can I have a constant float value in my project that I can access from a View's XML and .java file? I've tried ...
0
votes
0answers
50 views

Android: How can I add custom attributes to layout elements?

Say I have <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" ...
1
vote
1answer
33 views

obtainStyleAttributes() ignores certain attributes I am trying to retrieve

I am trying to retrieve a set of style attributes using obtainStyleAttributes(), but I am only getting the first few items retrieved, while all the others get defaulted. I confirmed that my style ...
1
vote
2answers
74 views

Where can I find Android: constant value in source code?

I want to know there is a place to define all Android: named Constants and it's value. Not html document in ...
1
vote
1answer
354 views

monodroid/xamarin custom attributes are empty using ObtainStyledAttributes

Trying to pass a custom attribute from a parent layout to a child layout. The TypedArray returned from ObtainStyledAttributes() doesn't seem to have the corresponding custom values for the custom ...
13
votes
1answer
258 views

How to retrieve style attributes programatically from styles.xml

Currently I'm using either a WebView or a TextView to show some dynamic data coming from a webservice in one of my apps. If the data contains pure text, it uses the TextView and applies a style from ...
0
votes
2answers
109 views

How to allow a custom View's XML attributes to be specified by either resource id or value?

I am implementing my own custom DialogPreference subclass, like so: public class MyCustomPreference extends DialogPreference { private static final String androidns = ...
2
votes
1answer
115 views

How can I reliably get a color from an AttributeSet?

I want to create a custom class that takes a color as one of its attributes when laid out in an Android XML file. However, a color could be a resource or it could be one of a number of direct color ...
2
votes
2answers
207 views

Get Hint attribute Value from AttributeSet

i have overridden EditText as given in this link. Now while declaring this field inside layout i am using <com.and.ab1209.ClearableEditText android:id=”@+id/edit_text_clearable” ...
2
votes
2answers
122 views

Why can't I use this attribute in my android theme?

To start with some context, I'm trying to style the background color of a SearchView widget. A really insightful so answer to this problem has already been posted, and I learned immensely from it. ...
0
votes
1answer
278 views

Android Parse XML Attribute

I am parsing two xml files - the first I have successfully parsed using XmlParser:- public final String getElementValue(Node elem) { Node child; if (elem != null) { if ...
0
votes
1answer
105 views

Is there a way to set an android activities attributes conditionally?

In my Android application I have an activity where I've been using [Activity(NoHistory=true)] to keep the activity from appearing on the activity stack. Now I'd like to make it conditional - ...
1
vote
0answers
166 views

How to add namespace attribute to ksoap envelope?

I need to add an attribute (xmlns:n0="urn:checkOTP") to the envelope generated by ksoap2 (Android version). <v:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
0answers
76 views

Android vCard Attribute Translation

just a short question: I am trying to use android-vcard to work with vCards in my app. I just wanna know if there is an easy way to get a human readable translation of the attributes (e.g. NAME), ...
0
votes
1answer
123 views

Android dynamic listview (--> meaning dynamic count of attributes per row)

I'm an android dev beginner and I know the basics of a simple list view. But what I need to do now is (I think) pretty advanced, so please tell me how (or if?) this is possible: I have different ...
0
votes
1answer
35 views

set a color value in the attribues file

I need a hit on how to set a color i have defined in the color.xml file inside my attrs.xml file. for example in color.xml I use <color name="mypreferencesummary">#e27229</color> and in ...
0
votes
1answer
36 views

accessing the standard layout attrributes in a custom view

I want to pull out the width spec and height spec from the standard attributes passed to my custom view's constructor so I can tweak them and pass back as new layoutparams when I want to display the ...
0
votes
0answers
320 views

How to get attribute in Android Sax Helpers DefaultHandler endElement()

In the startElement() method, I can get the ID attribute easily. But - I also need to know what tag I'm ending (based on the id). Here shows that it's easy to get in the startElement() because it ...
1
vote
2answers
893 views

Custom xml attributes without attrs.xml file

Recently I've faced with adding custom xml parameters to my views in xml layout. I know that I should use attrs.xml file for this purpose, but... I have found, that I can use custom parameters without ...
7
votes
3answers
719 views

Android JellyBean not Recognizing getTextSize of AttriubteSet

I am utilizing a class AutoResizeTextView I found here: http://stackoverflow.com/a/5535672/371778 This has worked great until JellyBean. It would seem that JellyBean doesn't recognize getTextSize() ...
2
votes
0answers
94 views

Android retrieve theme attribute

I have custom theme: <style name="SomeTheme" parent="android:Theme"> <item name="android:listSelector">@drawable/some_selector</item> </style> Now I'm dynamically creating ...
1
vote
3answers
787 views

Android: Default attributes for custom views

I have a custom view that extends one of the framework classes. Most Views in Android have some default attributes defined for them (such as Button being clickable, which is set by ...
1
vote
1answer
2k views

Custom Transparent Dialog (windowBackground non-existant?)

I'm attempting to create a custom dialog with a semi transparent background. I managed to get it to work through code with: getWindow().setBackgroundDrawableResource(R.color.bg_tran); Where ...
1
vote
3answers
3k views

Getting SAX Parser attributes value

quick question. I am Parsing XML from the web using Android. The Code below shows a sample of the XML. The problem im having is i cant the string value of the item tag. When i use the name = ...
3
votes
0answers
225 views

size attribute ignored in layer-list

In the code below, the shape takes up the entire height and width of the layer-list, which means it is ignoring the size attribute. (It does however listen to the top, left, and right attributes). I ...
0
votes
2answers
664 views

Attribute error what do these codes mean?

"<Keyboard>" does not set the required layout_height attribute: (1) Set to "wrap_content" (2) Set to "fill_parent" "<Row>" does not set the required layout_width attribute: (1) Set to ...
0
votes
2answers
96 views

How to fetch attribute values of android widget in java?

I have extended Android's Button class and I would like to access some of the attribute values being set in the XML file through java code, for example, padding, gravity. Let me know how to achieve ...
1
vote
2answers
2k views

Ksoap2 Android adding Attributes to a simple property

I am trying to create a new property inside a SoapObject that will contain simple string properties with attributes to them like this: <Power Unit="kw">1500</Power> here is the code i ...
0
votes
1answer
57 views

How do I refer to a list I have given an ID attribute of android:id/list in Java?

In my XML, I have the following <ListView android:id="@android:id/list" android:layout_width="match_parent" android:layout_height="fill_parent" > </ListView> ...
1
vote
1answer
131 views

Android: doesn't not recognize styleable in some case

I have added some attributes into file attr.xml. Here its code: <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="gallery_view"> <attr ...
3
votes
2answers
576 views

Android: How to get a custom attribute of an XML in Activity class

How do I get the attribute value "required" in my Activity Class? 1. values\attrs.xml <declare-styleable name="EditText"> <attr name="required" format="boolean" /> ...
1
vote
1answer
574 views

Custom attribute imported from another android project

From what I read elsewhere, the compiler error "No resource identifier found" for custom attributes goes away when you change the namespace for an included project to: ...
0
votes
1answer
568 views

Android sax xml parsing - getting attribute of parent

I develop an android app, which needs among others to parse weather data from YR.no. This organization offers an api with methods that provide certain data on xml format. Let’s say for example I want ...

1 2