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.
在活动中,我可以将 XML 文件中的 android:onClick 设置为我的 Activity 对象中的方法名称。我想在我的 sqlite 数据库中读取一个表,创建按钮,并将 onClick 设置为指向我的 Activity 中的一个方法,就像我在我的 XML 文件中添加静态视图一样。
我可以这样做而不必创建 View.OnClickListener() 对象。我发现 XML 方法在我的 Java 代码中更容易阅读。如果这不可能,XML 是如何做到的?