Deprecated Android layout that lets you specify exact locations (x/y coordinates) of its children views.
Questions tagged [absolutelayout]
166 questions
-1
votes
3 answers
setBounds of JComponent to pixel width of a string
I have this inner class:
private class Plats extends JComponent{
private String namn;
Plats(int x, int y, String n){
namn=n;
setBounds(x-10, y-10, 150, 40);
setPreferredSize(new Dimension(20, 20));
…
user1339086