Tagged Questions
0
votes
4answers
37 views
EditText always showing null
My xml
<TextView
android:id="@+id/newPlaceLatLable"
android:text="Place Latitude"
android:layout_width="150dp"
android:layout_height="40dp"
...
-1
votes
3answers
27 views
“LinearLayout” must be followed by either attribute specifications, “>” or “/>” in android
Hi i have a error on my activity i dont know why
error shows in line 6
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
...
1
vote
2answers
17 views
Error parsing XML: not well-formed (invalid token) andElement type “LinearLayout” must be followed by either attribute specifications, “>” or “/>”
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
...
1
vote
0answers
20 views
how to make custom key in soft keyboard in android
I am trying to develope custome soft keyboard in android, I am want change color of outptut text of key when I press on th key, my idea is by make class extends key by this code:
public class k ...
0
votes
0answers
10 views
Could not find class sf.json.xml.xmlserializer
I have the following code in my program.
url = new URL("http://www.aemet.es/xml/municipios/localidad_41091.xml");
URLConnection in = url.openConnection();
BufferedReader read = new ...
-1
votes
0answers
26 views
Why do we use xml language for layouts? [duplicate]
I know that XML is used in android apps to follow MVC architecture. It gives a clarity by separating the UI and the program.
But XML is said to be used to carry data over the network.. (well dats ...
0
votes
1answer
30 views
How do I insert a new node to an existing XML
I would like to insert a new node into a existent xml file, but The code below inserts all the nodes again.
I do a test if the file exists. If not, I create a new xml file and write the tags. If ...
1
vote
2answers
24 views
java xml parsing error printing node value
I am trying to parse some xml from a remote api, the xml is formed like this:
<django-objects version="1.0">
<object pk="13" model="ballot.poll">
<field type="CharField" ...
0
votes
2answers
30 views
Can't get R.java back in eclipse
I have a massive problem, and I can't find a single thread out there that specifies this problem.
I'd been watching Google IO, and the Android Studio was mentioned, I downloaded it, installed it, and ...
0
votes
2answers
25 views
make a textview width proportional to imageview above
my layout is very simple. i use a vertical relative layout which contains an imageview on top of 2 textviews (heading and text). In portrait it looks fine. However in landscape it happens, that the ...
0
votes
1answer
23 views
android using xml array resources
Hey guys i am new in android programming and have a little problem
i want to create a listView with an ImageView and a TextView. This code works, but actually i wanted to use arrays which I created ...
1
vote
1answer
41 views
Android dev - App stopped working, no errors in code
I've recently started android app dev, but have came across a problem with the app I'm trying to make. Whenever I load up the app in an emulator (Android 4.2.2 4.00" screen to be exact) it just says ...
1
vote
2answers
45 views
LinearLayout not rendering
I want to create a login screen. I want to have the heading at the top, leave some white space and then have the user name and passwords each in one line. Then, I want to leave some more white space ...
0
votes
0answers
20 views
How set alpha/opacity value to color on xml drawable?
I need to set a value of opacity to a color in xml drawable. But when i try to add the two values of opacity (#20C0C0C0) for example, don't work. The color appeares totaly transparent.
Here is my ...
0
votes
1answer
39 views
How do I get the tag 'Name' from a XML Node in Java (Android)
I have a tiny little problem parsing an XML file in Java (Android).
I have an XML file that is like this:
<Events>
<Event Name="Olympus Has Fallen">
...
</Event>
...
0
votes
1answer
26 views
Trying to send xml in utf-8 over socket in Android
I have an Android app that sends xml files to a server. If I set the encoding of the xml header to utf-8 it all works until there is a weird character like a japanese symbol for example, in this case ...
-1
votes
1answer
21 views
how to make layout clickable programmatically
I am creating a RelativeLayout programmatically, and thus, I need to add this xml attribute: android:clickable="true" programmatically.
How can this be done? thanks!
-2
votes
0answers
28 views
how to use external xml in my android application [closed]
Good afternoon.
Could someone tell me how to read the following external XML and pass to a String.
http://www.aemet.es/xml/municipios/localidad_41091.xml
I've tried many ways but I get the ...
-1
votes
1answer
39 views
How to download an XML file via a URL in Android app [closed]
Within my app, I wish for an XML file to be downloaded so that the data can be used within the app.
The XML file will be downloaded via a URL.
How can I go about doing this? I would like the ...
-1
votes
1answer
48 views
XML File to mySql [closed]
I have an XML file with various tables, written into it using Java the structure of the file is as follows:
<?xml version='1.0' encoding= 'UTF-8' standalone='yes' ?>
...
-1
votes
2answers
31 views
ClassCastException. XML Parsing [duplicate]
I've lost already two hours trying to parse a XML, and I'm panicking out. Hope you guys can help me.
I've a XML file like this one:
<document src="xmls/sections/master/37_11.xml">
...
0
votes
1answer
36 views
How to make my android app method less RAM consuming
I was looking for some advice on making my application more RAM friendly. On a larger android tablet device the app works fine and I'm testing on a HTC Desire S running Android 2.3.5 which I know is ...
0
votes
1answer
16 views
eclipse android xml editor screwing up id's across multiple layouts
I have 2 seperate xml layout files. When i update the id or text in a view in the first layout, the second layout is mirroring it.
So change the id of an imageview in layout 1 to ivImage, and the ...
0
votes
1answer
15 views
Android Xml Programming, poisition buttons on the availble space depending on the size
I've runned into a small problem, I want to create buttons that are positioned on a certain part of an image.
My original though was using an image as an background for my LinearLayout and place the ...
1
vote
1answer
42 views
Table doesn't show
I have created a table through TableLayout (id=myProducts_tableLayout) programatically but it doesn't show on the screen. Below is the XML code.
#`<?xml version="1.0" encoding="utf-8"?>
...
0
votes
1answer
22 views
Android ScrollView hidding bottom
When I use a LinearLayout with an drawable background (floating_section) inside ScrollView, it doesen't let the very bottom of the drawable appear (the rouded corners, and also the "end" of the view.
...
0
votes
2answers
37 views
How to center a RatingBar in Android
I have created a custom RatingBar as described in one of the tutorials given here on stack-overflow and it's looking great, the problem is with the centering of the image. here is what I've got:
As ...
0
votes
2answers
36 views
Adding an image to a string with Android SDK
I am a super newbie to Android Development and wanted to start slow with an Icon Theme for 3rd party launchers. I was wondering if there is any way to add an image (from inside my "drawable" folder) ...
0
votes
2answers
28 views
PI must not start with xml
//Initialize soap request
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
//Use this to add parameters
request.addProperty("agentcode",agentCode);
...
0
votes
1answer
22 views
Rotate fragment to create a reflection on the x-axis
So basically I have defined a fragment for a card game I am creating, I wish to reuse this fragment for both player 1 and player 2 (since they both have the same layout) however I want them to be a ...
0
votes
0answers
40 views
VideoView orientation change to full screen (show/hide actionbar and notification)
Hi I have this problem on playing orientation change. On portrait, I have the following XML in my layout directory.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout ...
0
votes
0answers
15 views
Android How to export an .xml “Form” as a .csv?
I have an app with a simple form for people to fill in, like a feedback form. The form is filled in within the main.xml. It currently sends as an email to a pre determined email address. I would like ...
2
votes
3answers
48 views
How can i place two buttons side by side with an image at the bottom of the button?
How can i place two buttons side by side with an image at the bottom of the button?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
...
0
votes
0answers
16 views
Bitwise Binary operations on attribute flags in XML files
In XML files, on some attributes you can combine flag values by OR operator, example:
<item name="openingDays" value="monday|wednesday|friday"/>
assuming the flags for "monday", "tuesday", ...
0
votes
0answers
13 views
XmlPullParser parsing Google Place response: ignorable whitespace strangeness with getText
An an android app, I'm using an XmlPullParser to parse a response from a google place search, which takes the following format:
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
1answer
21 views
How to receive a dynamic variable from a website (android)
I'm not exactly sure how to state this but here's the basic idea of what I'm trying to do:
I'm making a radio player application in Android Java. The function I'm looking at including is a dynamic ...
0
votes
0answers
29 views
Why can't my button gain focus unless I click another button first?
I have 5 buttons on my activity, one of which is a close button to finish() the activity. Clicking it does nothing unless I click one of the other buttons first and then click it. I'm assuming the ...
1
vote
1answer
42 views
Possible implementation of game screen concept for an android game
I want to develop an android app, but I'm still not that great at using xml or the eclipse wysiwyg editor to make scalable and robust interfaces!
Below is a quick concept I drew up on word of what my ...
-1
votes
2answers
56 views
Android Trading Card Game card objects [closed]
I'm writing the GUI for an Android app that plays a trading card game. I have code for a battlefield layout using several views. I need to make an object that represents the deck, and also an object ...
0
votes
2answers
1k views
ActionBarSherlock: Error inflating class <unknown>
I'm developing an app that uses ActionBarSherlock. The app works fine when run on SDK v15(ICS), but crashes with SDK v8 (Froyo)!
Here is the error I'm getting:
E/AndroidRuntime( 489): FATAL ...
0
votes
2answers
66 views
Which is the simplest way to do this? ( XML & APIs) [closed]
first of all, I have to say that I am completely noob in android programming...
Excuse me if I don“t ask properly my question
I was working with Last.FM and its API but I have got so many errors ...
3
votes
0answers
48 views
How to add documentation to custom attributes?
I know how to create custom attributes for views, for example:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="SomeViewsCustomAttrs">
...
124
votes
2answers
22k views
What's “tools:context” in Android layout files?
Starting with a recent new version of ADT, I've noticed this new attribute on the layout XML files, for example:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
77
votes
7answers
7k views
Moving and vanishing lines of code; trouble with Eclipse's XML Editor
Sometimes my code moves on its own or just disappears in the Eclipse XML editor.
When I highlight the affected code, the highlighted lines try to correct themselves. But when I scroll or drag ...
3
votes
2answers
542 views
It is possible to use SimpleXML for Android in commercial apps?
Welcome all
It is possible to use SimpleXML for android in commercial apps? THis is the website: http://simple.sourceforge.net/
I'm checking the documentation but my english skills are not too munch ...
1
vote
1answer
741 views
Add Button programmatically with parameters?
Basically, I have this layout structure: <RelativeLayout> <RelativeLayout> <TextView /> </RelativeLayout> <ScrollView> <RelativeLayout> ... </RelativeLayout> ...
30
votes
2answers
28k views
How to parse XML using the SAX parser
I'm following this tutorial.
It works great but I would like it to return an array with all the strings instead of a single string with the last element.
Any ideas how to do this?
6
votes
3answers
15k views
Create a custom View by inflating a layout?
I am trying to create a custom View that would replace a certain layout that I use at multiple places, but I am struggling to do so.
Basically, I want to replace this:
<RelativeLayout
...
22
votes
4answers
15k views
How to - Comments in layout xml
I would to enter in some comments into the layout XML files, how would I do that?
thanks,
Dean
196
votes
9answers
91k views
How to align views at the bottom of the screen?
Here's my layout code;
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
...


