Java Swing - Custom Material TextField and PasswordField

  Рет қаралды 11,715

Ra Ven

Ra Ven

Күн бұрын

Пікірлер: 74
@darmgim1301
@darmgim1301 3 жыл бұрын
your component are the best in swing java
@davidr.1318
@davidr.1318 2 жыл бұрын
Hello. How to use fillRoundRect. It doesnt work, the text get covered
@kanakrt9210
@kanakrt9210 3 жыл бұрын
Damnnn this is gooddd! Also try doing jCalendar and jTable
@LaingRaven
@LaingRaven 3 жыл бұрын
Ok bro
@goxy5046
@goxy5046 3 жыл бұрын
@@LaingRaven Noooo first plz jFreechart gantt in jPanel :)
@saileshlimbu2373
@saileshlimbu2373 3 жыл бұрын
As always you are the best bro.
@LaingRaven
@LaingRaven 3 жыл бұрын
Thank
@mateomartinezg.9321
@mateomartinezg.9321 3 жыл бұрын
Wonderful textFields 👍🏽
@LaingRaven
@LaingRaven 3 жыл бұрын
Thank
@Micodex
@Micodex Жыл бұрын
Excellent, thank you very much. A question, how could I attach it to the controls palette as a .jar? Thank you very much again
@LaingRaven
@LaingRaven Жыл бұрын
You can check this kzbin.info/www/bejne/mmKzaGCla65seNEsi=Om63grGXl6YkmGEf
@SomeOne-px9ex
@SomeOne-px9ex Жыл бұрын
amazing as always but i wanna ask you why you used timing library instead of timer class in swing?
@LaingRaven
@LaingRaven Жыл бұрын
timing use for create animation it calculating time differences and we can set duration..., see this sample : github.com/JFormDesigner/FlatLaf/blob/b6207bafde36327498e4c9a08b98229a0606690b/flatlaf-core/src/main/java/com/formdev/flatlaf/util/Animator.java#L248-L257
@SomeOne-px9ex
@SomeOne-px9ex Жыл бұрын
@@LaingRaven explain
@darmgim1301
@darmgim1301 3 жыл бұрын
is a JFormattedTextField like this possible? please! I have tried changing the extended class and it works great for me, except with the text when resetting it which is always maintained.
@LaingRaven
@LaingRaven 3 жыл бұрын
To clear text you can use JFormattedTextField.setValue(null);
@LaingRaven
@LaingRaven 3 жыл бұрын
or this : textFieldF1.addFocusListener(new FocusAdapter() { @Override public void focusLost(FocusEvent arg0) { if (textFieldF1.getText().equals("")) { textFieldF1.setValue(null); } } });
@darmgim1301
@darmgim1301 3 жыл бұрын
@@LaingRaven I'll try, thank!!!
@eliaspbareia
@eliaspbareia 2 жыл бұрын
you did the class JFormattedTextField?
@LaingRaven
@LaingRaven 2 жыл бұрын
Ok I will check it.
@serenity-_-28
@serenity-_-28 8 ай бұрын
What did u do in 18:14? how to access encapsulate fields?
@LaingRaven
@LaingRaven 8 ай бұрын
Use Ctrl+Shift+Alt+E You can config it : Tools->Options->Keymap Select Profile as NetBeans and search for Encapsulate Fields then config with your shortcut
@fernandosantosdasilva335
@fernandosantosdasilva335 16 күн бұрын
Parabéns, Nesse vídeo, você poderia colocar uma legenda, sei que não tem áudio, mas seria interessante a legenda explicando passo a passo, o vídeo se tornaria uma videoaula.
@dragonfire878
@dragonfire878 3 жыл бұрын
A question : how to How to change color kabel Text?
@LaingRaven
@LaingRaven 3 жыл бұрын
check in method createHintText in textfield class you will see code : g2.setColor(new Color(150, 150, 150)); just change this color
@darmgim1301
@darmgim1301 3 жыл бұрын
Help! I set the font size 14, but the text entered is cut off. What I can do?
@LaingRaven
@LaingRaven 3 жыл бұрын
Set your textfield height to default size, it will auto resize when font change.
@darmgim1301
@darmgim1301 3 жыл бұрын
@@LaingRaven Excellent! Thanks! One more question: to reduce the space between the text and the bottom border line?
@LaingRaven
@LaingRaven 3 жыл бұрын
Change the code setborder in constuctor 20,3,10,3 mean top,left,bottom,right Edit number 10 to change space.
@darmgim1301
@darmgim1301 3 жыл бұрын
@@LaingRaven you are the best
@darmgim1301
@darmgim1301 3 жыл бұрын
a question: how to put input text bold but not labeltext? help!
@LaingRaven
@LaingRaven 3 жыл бұрын
Check in method createHintText add this code : g2.setFont(getFont().deriveFont(0, getFont().getSize())); on g2.drawString()
@darmgim1301
@darmgim1301 3 жыл бұрын
@@LaingRaven very thanks! you are the best!
@Abdul-cp3vb
@Abdul-cp3vb 2 жыл бұрын
Hi, You see for the line that the text sits on how do you change the default colour ive tried everything in the code but i cant seem to get it. Thank you!
@Abdul-cp3vb
@Abdul-cp3vb 2 жыл бұрын
I thought it was just private Color lineColor = new Color((); but i changed it to private Color lineColor = new Color(255, 255, 255); and nothing happened
@Abdul-cp3vb
@Abdul-cp3vb 2 жыл бұрын
Sorry just incase i was vague i mean the default colour of the line before it is seletected or hovered over the default grey colour
@LaingRaven
@LaingRaven 2 жыл бұрын
Change in method void paint I use Color(150,150,150)
@antoniofarfan265
@antoniofarfan265 3 жыл бұрын
Beautiful 😁👍🏻❤️👏🏻
@LaingRaven
@LaingRaven 3 жыл бұрын
Thanks for visiting
@SCRIPTNEWBIE
@SCRIPTNEWBIE 3 жыл бұрын
package org.jdesktop.animation.timing.Animator not found error. how to fix it
@LaingRaven
@LaingRaven 3 жыл бұрын
Add library bro TimingFramework-0.55.jar
@SCRIPTNEWBIE
@SCRIPTNEWBIE 3 жыл бұрын
@@LaingRaven okie bro
@LaingRaven
@LaingRaven 3 жыл бұрын
Bro this timing library is in project ready.
@dewamademardana
@dewamademardana 3 жыл бұрын
@@LaingRaven oke thank you bro
@dazzlepelobello
@dazzlepelobello 9 ай бұрын
Question: how can i add the eye and unhide icons in password field?
@LaingRaven
@LaingRaven 9 ай бұрын
You can check this : kzbin.info/www/bejne/l5SZe2OVnNKcapI
@dazzlepelobello
@dazzlepelobello 9 ай бұрын
Thank youu@@LaingRaven
@peacock6703
@peacock6703 Жыл бұрын
I reaaly need to know how to make Custom stuff in Java. !!!
@Katsuuuqt
@Katsuuuqt 8 ай бұрын
How to add a method for replacing texthint font color?
@LaingRaven
@LaingRaven 8 ай бұрын
Here you can change this : github.com/DJ-Raven/raven-project/blob/986148c15e60a39db14f3fd0bc4ed035cc881f48/src/textfield/TextField.java#L125
@Katsuuuqt
@Katsuuuqt 8 ай бұрын
@@LaingRaven Thanks, I appreciate it!
@MrHappens-wl1rk
@MrHappens-wl1rk Жыл бұрын
How change font size?
@arturomora8680
@arturomora8680 Жыл бұрын
How can I change the background of the text field?
@LaingRaven
@LaingRaven Жыл бұрын
use method setBackground(new java.awt.Color(...));
@arturomora8680
@arturomora8680 Жыл бұрын
@@LaingRaven It's that ir lets me change it, but for some reason when I puta the value of alpha or implement it I'm some way that is invisible I can't, how do I make the background transparent? Es que así me deja cambiarlo, pero por alguna razón al poner el valor de alpha o implementar de alguna manera que sea invisible no puedo, como hago que el background sea transparente? O poder bajarle la opacidad de alguna manera?
@LaingRaven
@LaingRaven Жыл бұрын
have you try this to make transparent background : txtfield.setBackground(new Color(0, 0, 0, 0));
@arturomora8680
@arturomora8680 Жыл бұрын
@@LaingRaven If you want, I'll send you the code so you can see what I'm implementing it in, it's just an interface It is that I have not used Java for a long time and only yesterday I started again Email? I need to change this pls xd
@arturomora8680
@arturomora8680 Жыл бұрын
By Messenger if you want
@herdian2165
@herdian2165 3 жыл бұрын
Like android 😍
@LaingRaven
@LaingRaven 3 жыл бұрын
:)
@yogipratama9285
@yogipratama9285 3 жыл бұрын
Request jcombobox
@LaingRaven
@LaingRaven 3 жыл бұрын
Ok next
@emersonbiag
@emersonbiag 2 ай бұрын
// Method to retrieve the inputted text public String retrieveInputText() { return getText(); }
@ameen1450
@ameen1450 9 ай бұрын
Please add eye button for password view
@LaingRaven
@LaingRaven 9 ай бұрын
You can check this kzbin.info/www/bejne/l5SZe2OVnNKcapI
@ameen1450
@ameen1450 9 ай бұрын
@@LaingRaven hey Bro... Can u design a restaurant dashboard.. In which left side of screen have a category list.. If we choose any category, need to see images of that food as many different types as small panels.. If we hover mouse, need to get details inside that box.. If we click, it will add to table
@serenity-_-28
@serenity-_-28 8 ай бұрын
Question, im having problem with my setRenderingHints, it says "method setRenderingHints in class Graphics2d cannot be applied", how to fix it?
@serenity-_-28
@serenity-_-28 8 ай бұрын
using 8.2 netbeans
@LaingRaven
@LaingRaven 8 ай бұрын
Remove 's' setRenderingHint not setRenderingHints
@serenity-_-28
@serenity-_-28 8 ай бұрын
@@LaingRaven thank u
@MrHappens-wl1rk
@MrHappens-wl1rk Жыл бұрын
How change font size?
Java Swing - Date Chooser
5:40
Ra Ven
Рет қаралды 31 М.
DEJA DE HACER INTERFACES FEAS | JAVA SWING MATERIAL DESIGN
17:24
Anthony Zabs
Рет қаралды 435 М.
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
Java Swing - JCombobox Suggestions and Autocomplete
25:28
Hide and show password in java swing {Free Code}
9:12
Be the programmer
Рет қаралды 18 М.
I Scraped the Entire Steam Catalog, Here’s the Data
11:29
Newbie Indie Game Dev
Рет қаралды 712 М.
How I wrote online shooter on C++ in a week
25:31
Vectozavr
Рет қаралды 1 МЛН
I Redesigned the ENTIRE YouTube UI from Scratch
19:10
Juxtopposed
Рет қаралды 912 М.
Java Swing UI Sign In/Login Form with Source Code-Netbeans
15:17
FutureTech360
Рет қаралды 91 М.
Creating a Modern JTable Design in Java Swing with FlatLaf
18:48
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН