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 中的按钮所代表的按钮对象的引用。你可以做任何你想做的事情,包括设置监听器,当它被点击时会做一些事情。