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.
私はAndroidプログラミングが初めてで、main.xmlファイルでボタンを使用する方法があるかどうか、またはメインパネルでカスタムUIを使用して画面を最初から作成する必要があるかどうかを知りたい.
はい、できます。次の方法でボタンを見つけることができます。
Button btn = (Button) findViewById(R.id.button1);
はい、レイアウト xml のボタンが表すボタン オブジェクトへの参照を取得できます。クリックされたときに何かをするリスナーを設定するなど、好きなことをすることができます。