hint Questions
35
Solved
13
Solved
This is what I'm trying to make:
In the Flutter docs for Text Fields (https://flutter.io/text-input/) it says you can remove the underline by passing null to the decoration. However, that also g...
1
I am implementing a Spring Data Repository and having my repository extend the MongoRepository. I am looking for a way to specify a hint on my findBy methods so I can be control. I have seen severa...
Pythagorean asked 25/1, 2016 at 22:12
10
Solved
I would like to add a hint value to my javax.swing.JTextField. It should look like Firefox rendering of <input type="text" title="bla">. This creates an edit field with the text 'bla' in the ...
Boleslaw asked 15/11, 2009 at 21:48
15
Solved
11
My EditText configured as follows won't show the hint:
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:hint="The hint..."
...
Commune asked 31/8, 2010 at 10:46
10
Solved
I want to provide the user with a hint on what he needs to enter into my text field. However, when I set the value, it does not disappear once a user clicks on the text field. How can you make it d...
7
Solved
In current implementation of SearchDelegate, there is no option to change the hint text. When the query is empty, search screen is displaying "Search" in the query field as a hint text.
Hint text...
1
Solved
Standard allocators can optionally take a hint as a second parameter https://en.cppreference.com/w/cpp/memory/allocator/allocate
T* allocate( std::size_t n, const void * hint);
Leaving aside that ...
6
Solved
This is my xml
<android.support.design.widget.TextInputLayout
style="@style/main_input_text"
android:layout_marginTop="@dimen/activity_medium_margin"
app:hintTextAppearance="@style/TextAppea...
Crosier asked 29/9, 2015 at 11:55
3
I have tried many options available online but none of them seem to be working.
I have used this XML for this purpose.
<android.support.design.widget.TextInputLayout
android:layout_width="mat...
Supersede asked 18/7, 2016 at 10:1
6
I'm trying to make EditText with a hint text:
In English "password" .. the cursor is correctly set to the left.
But for Arabic for which the hint is "كلمه المرور" the cursor is always set to the le...
Pulpwood asked 26/5, 2015 at 10:42
10
Solved
Does API 21 provide a method to use the following feature:
http://www.google.com/design/spec/components/text-fields.html#text-fields-floating-labels
I'm trying to float the EditText hints.
Thank...
2
Solved
Can anyone give a clear explain of these 3 concept? What's the difference and how to use them?
Vaivode asked 2/12, 2013 at 12:2
2
Solved
I am building an app that has some AutoCompleteTextView, using amterial design AppCompat. I need to remove the hint animation that this component has, when you tap on the field and the hint goes up...
Porthole asked 13/11, 2015 at 11:15
1
Solved
Looking at Flutter's source code I can see that this can only be inferred using theme.inputDecorationTheme.hintStyle, is there any way to simply pass it to the constructor?
EDIT: currently there's...
12
Solved
In my application in android are many EditText fields. And I ran into a problem with hint.
It is not disappearing when EditText is focused, but it disappears when I start to write something.
How ca...
Maltose asked 21/1, 2014 at 16:55
6
I have an EditText like below
<EditText
android:id="@+id/extUsername"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="Username field"
a...
Jig asked 27/4, 2015 at 7:43
1
I'm trying to compile Polysemy monad values at runtime using Hint (Language.Haskell.Interpreter).
When I try to do this I reliably get an error about improper use of the : operator in "interactive...
Togoland asked 27/12, 2019 at 2:27
2
Solved
In my business we have a "Data Store" where data is stored (e.g. database, flat file, etc) and a "Data Provider" who delivers the data (e.g. human, sensor, etc).
To model this in UML is no proble...
0
I've re-posted this question to focus more tightly on the specific error, and to better enumerate what I've already tried.
I'm trying to parse some Haskell code during the runtime of a Haskell prog...
1
I'm implementing the search bar using SearchDelegate in my flutter app.
I've overridden the ThemeData appBarTheme(BuildContext context) function to return my main App ThemeData.
However, this onl...
1
Solved
How can I enable a Node.js Intellisense in VS Code?
For instance, I am aware of a constant in Node.js __dirname, but when I try to type __dir in VS Code I am not getting any suggestions, while I w...
Knob asked 25/4, 2019 at 19:57
4
Solved
If I run a mongo query from the shell with explain(), get the name of the index used and then run the same query again, but with hint() specifying the same index to be used - "millis" field from ex...
2
Solved
I'd like to add hint text to CupertinoTextField without importing the material theme.
Up to this point I tried mixing CupertinoTextField with InputDecoration like so:
CupertinoTextField(
decorat...
Trickle asked 11/3, 2019 at 7:45
1 Next >
© 2022 - 2025 — McMap. All rights reserved.