Questions tagged [hint]
361 questions
0
votes
2 answers
Does edittext hint count as actual text
I have an editext with a hint which displays 0. My question is would mEdit.getText().toString().length() == 0 be true or false in this configuration. Is the text in the hint treated as actual text in the textbox, hence returning a length of 1 or is…

Alk
- 5,215
- 8
- 47
- 116
0
votes
1 answer
Change edittext hint dynamically in toolbar on swipe tabs
Here is the layout of toolbar

Devs
- 286
- 2
- 5
- 16
0
votes
0 answers
haskell - cabal install hint : error Module `ErrUtils' does not export `pprErrMsgBagWithLoc'
While trying to install hint on my machine Debian GNU/Linux 7.6 (wheezy) with ghc 7.4.1 and cabal-install version 0.14.0
using version 1.14.0 of the Cabal library
I got the following error:
Registering ghc-paths-0.1.0.9...
Downloading…

mntk123
- 905
- 6
- 18
0
votes
1 answer
Popup Window InputEventReceiver Error - Android
I dont like errors. I'm using a Popup Window to display a little hint above a TextView. the hint is for explanation of what the TextView is saying, for example RBI, will popup a hint saying "Runs batted in" I keep getting this error…

Steven R
- 323
- 2
- 6
- 18
0
votes
1 answer
How to find fields in configuration forms in magento?
I want edit fields in shipping methods in backend in magento but I can not find where are fields, I used template path hints but I can not find, how can I find forms elements in backend in magento?

maryam modir
- 15
- 5
0
votes
1 answer
In Magento 1.9.01 Enable Debug Hint Not Working
I've tried to follow the steps listed here. I selected yes for all stores, but it's still not working. Hints do not show up at front end.
Any clue?

Muhammad Maulana
- 13
- 5
0
votes
1 answer
How to display a warning at a specific line
Quick Intellij plugin Development question.
Can somebody show me a snippet of code on how to display a warning at a specific line?
I want to display a yellow bulb and be able to alt enter.
I don't know if the yellow bulb is part of a warning or just…

Vlad Blaj
- 55
- 3
0
votes
1 answer
how can i create a responsive mouseover tooltip using a background image?
css to create some tooltips when mousing over some text. the text is positioned relative to the parent div inside it's own div. I need the background image to be responsive so that when the browser resizes to a lower res the image responds, as well…

tiki16
- 23
- 6
0
votes
2 answers
tuning in sql server - views
I created a view in sql server 2012, such as:
create myview as
select mytable2.name
from mytable1 t1
join myTable2 t2
on t1.id = t2.id
I want that join table1 and table2 will be with correct index (id), but when I do:
select * from myview
where…

Eitan
- 1,286
- 2
- 16
- 55
0
votes
1 answer
Hint Property text disappears in EditText after applying @string
I applied a Hint property to my EditText element and the IDE says the I should hardcode an @string variable. So I go to my strings.xml and create a variable for it and then apply it to the Hint property. After saving my work, the text in the Hint…

IamEternal
- 1
- 1
0
votes
2 answers
Css property of Hint (Kendo UI) changing on dragging
uiLayer.draggable({
elem: '#' + id,
group: "resizeDiv",
axis:axis,
hint: function(e) {
var divOnResize = $("");
…

Mayur Lunawat
- 97
- 1
- 1
- 12
0
votes
4 answers
EditText methods in java android
Hello I'm new to android developing.
Is there a method in java that equals to #.gotFocus?
Is there in java an events list that I can watch and select like in c# visual studio?
I tried to do #.Focus or something similar but had no success.
I want to…

RonYamin
- 77
- 2
- 11
0
votes
0 answers
android edit text hint text size for different resolution
I am developing an android application for all types of resolution. My app has couple of edit text with hint on it. The problem is that the hint text looks small for high resolution. So I want to change hint size for different resolution in switch…

code_geek
- 163
- 2
- 11
0
votes
0 answers
How to show EditText hint after .setText("")
Im trying to display the hint after I intentionally clear the edittext view. I tried the following code without success.
etPhone.setText(null);
etPhone.setHint(getResources().getString(R.string.phone_hint));
Any idea would be appreciated.
Thx

yahikochan1
- 21
- 4
0
votes
2 answers
Is a Hint a real Value?
I,ve got a Script where Users can fill a Formular. This will be saved to a Database later.
If there are entrys in the database, they will be shown as a Hint in the EditText.
Now my Question: A User sees this hint in the formular and doesn't fill…

Nick
- 135
- 1
- 4
- 13