Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リソースファイルを使用せずに、Javaファイルで次のコードを使用しています。
m_txtSearch = new TextField(); m_txtSearch.setHint("検索");
次に、ヒント テキストのフォント サイズと色を変更するにはどうすればよいですか。
私を助けてくれませんか?
Font font = new Font("Verdana", Font.BOLD, 12); txt.setFont(font); txt.setForeground(Color.BLUE);