Tagged Questions
0
votes
2answers
42 views
Convert textField to String and String to textField
I have a function that deletes an entry in a list when it is clicked.
entriesView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
public boolean ...
-3
votes
0answers
41 views
TextView made clickable vs. button defined with at listener [closed]
A very general question.
There are two ways that I know of to "make" a button:
Declare an android:clickable="yes" and an android:onclick="methodName" in the layout.xml file.
Declare a new button in ...
1
vote
0answers
65 views
libgdx textfield language on Android
How to get input into libgdx TextField in native language on Android?
I mean an ability to input login or password for example. Yes, i could call smth like Gdx.input.getTextInput or native Android ...
0
votes
1answer
70 views
borderStyle appcelerator
I have the following code, but the result is quite different from what I thought was going to be (ios verion).
What am I doing wrong?
//creating the textfield for our loan amount input
var tfAmount ...
0
votes
0answers
36 views
Android. Scrollable tabs. Add plain text field to tab 1 of 3
I have blank activity with scrollable tabs and I want to add plain text field to tab 1 of 3.
Can you explain how to do it, as activity_main.xml graphical layout is not allowed to add something via ...
1
vote
1answer
278 views
Why android gives warning on using size smaller than 12sp?
Well, I am developing app for 7 inch tablet, more specially for nexus 7, and in the XML layout file, i get warning
Avoid using sizes smaller than 12sp: 11sp
if i set the size of any textField to ...
0
votes
3answers
69 views
Textfields in android
I hope someone can help! I'm fairly new to android and am having a problem with textfields. I have 3 textfields that require the user to enter info, when the register button is clicked a message will ...
-1
votes
1answer
57 views
in android: retrieve data from dynamically added fields in form
I am trying to develop a user input form where i take his details and store them
in the form i have fields for his name, email, address, phone number etc.
a person may have multiple emails or multiple ...
2
votes
2answers
380 views
libGDX scene2d TextFieldListener does not receive DELETE key on Android
I cannot get the android "delete" key to register in my TextField (scene2d ui element in libgdx) listener. Here is my code to define the text field:
nameTextfield = new TextField("", skin);
...
0
votes
0answers
170 views
jquery mobile form items on Android 2.3.6
I have an application form with textfields and selectfield using jquery mobile 1.2.0 . I have tested my application on Ice-cream sandwich, Jelly bean and iOS. Works OK. But I cannot type anything in ...
1
vote
0answers
161 views
android: set text field position, dynamic position, in java
I'm new at android programming.
How can I set the position of a textfield from a .java file activity? (I dont want to change it from the .xml file)
I already tried :
TextView tv = new ...
2
votes
1answer
210 views
Creating a borderless textfield (Titanium studio Android)
I'm new to Titanium Studio. I would like to create a Textfield without border for Android. I saw there is a method for Ios, but didn't find any for android. Can any one please suggest me how can I ...
0
votes
2answers
445 views
Remove appearance of TextField in droidText : Android
I am trying to create a PDF using droidText library. There I want to place some text content in the middle of the page but align to left. I was unable to do with Paragraph class and setAlignment() ...
0
votes
3answers
63 views
How to replace text in a textfield when user enters any character
In my android app I have a text field that says "how much would you like to take".
I want the text to be erased automatically and replaced by what the user inputs when they type in that textfield.
...
0
votes
2answers
92 views
how to create a textfield in an alert box in android?
This is what I use to create a textfield:
final EditText username_input = new EditText(this); // create an text input field
username_input.setHint("Enter Username"); // put a hint in it
but ...
-2
votes
2answers
529 views
Creating password verification for my Android application [duplicate]
Possible Duplicate:
Password protecting my android app (the simple way)
Edit:
I founded what i want here: Password protecting my android app (the simple way)
old
(I have a TextField ...
3
votes
1answer
474 views
Text Field Style Crashes on Android Devices in an app with Sencha
I am having problems with the default style of Sencha (or Android not sure) for the text inputs and password fields, it works ok on iOS devices and on some android devices, but HTC and others put ...
0
votes
2answers
2k views
How can I implement Android 4.0 designed (Holo) like text fields?
I do have the latest Android API and a ICS emulator running, but I can't find text fields that look like:
http://developer.android.com/design/building-blocks/text-fields.html
Is there a way to get ...
0
votes
1answer
127 views
Android like Text Auto Link property in BlackBerry
Is there any Text Auto Link property in BlackBerry similar to Android.
Means in Android if a text has a URL with in the text and Texts Auto Link property is set then it automatically detects the URL ...
0
votes
1answer
607 views
Custom android layout for Textfield element size
Under my relative layout, I put in a Textview and then a TextField (both of them are aligned on the left hand side).
However, the TextField can not stretch to the width I want (well, it would stretch ...
0
votes
3answers
269 views
Android “text” next to “Text Field” box
Im newbie into Android development and I have a silly question. How do you place the "text field" box next to a text in a single line.
Example:
Please Enter the number: [ ] <--- this ...
1
vote
1answer
500 views
Moving the Cursor in an Input text on Android web browser
After Much searching I have decided to ask my first stack overflow question:
functioning example can be found at: http://www.mshare.net/mobiletexttest
View page source for code, it is all on there.
...
0
votes
2answers
385 views
Text Field in Android
I am developing an Android , which has a Text Field.
Every time user presses any key in the text field(EDIT TEXT), I want to to read that in a character variable, perform some action with that ...
0
votes
2answers
446 views
EditText field appearence
The EditText fields in the Android emulator have an inner shadow and rounded corners. The same app on my Samsung Galaxy shows the EditText fields flat looking and perfectly rectangular.
I realize ...
2
votes
0answers
1k views
Android Webview Autocomplete Text Color
I have a WebView integrated into my application. The problem I am facing is with the autocomplete that pops up when the WebView recognizes that there was a value previously entered into the text ...
4
votes
1answer
3k views
Android - Add textview to layout when button is pressed
So right now I have a text field with a button (add+) below it.
I would like to make it so every time text is entered into the Text Field, and the Add button is pressed, a new text view is added to a ...
1
vote
1answer
1k views
Android change TextField outline/boarder color
I have a text field, and on Android 2.2, when it is in focus or being used, it highlights it and puts an orange boarder around it.
The orange really doesn't look good with the other colors in my app, ...
0
votes
1answer
410 views
Android - ScrollView with text fields causes background to flash
I'm new to Android development and am having a problem. For my Android Activity I have a set of text fields inside a TableLayout. Prior to implementing ScrollView I had no issues, but with ScrollView ...
0
votes
1answer
1k views
Virtual Keyboard does not appear while clicking on text field in Android after using iScroll.js plugin
I am new to phonegap and jqTouch, I am using these for developing Android application.
The problem is, the touch event on textfields working fine on iPhone, but not working on Android, nothing ...
0
votes
1answer
1k views
Appcelerator simple textfield not showing
Greetings,
I'm trying to simply display a blank textfield (I know), but it's not working?
I must be making some simple error.
Here is my app.js:
Titanium.UI.setBackgroundColor('#FFF');
var ...
1
vote
3answers
1k views
Input fields & converting text to numeric
I have an app I am working on that does some math on a few variables and outputs the answer. Well that's the plan anyway. Being a total n00b at Android & Java I am not sure of a couple of things.
...
3
votes
2answers
2k views
html textfield in WebView in an Android application is hidden by the soft keyboard
I have an Android application that is a TabHost with a WebView. I use it to load a specific html file that has a text field in its bottom part.
When I touch the html textfield, the soft keyboard pops ...


