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.
我的应用程序中有两种类型的按钮,一种是城市名称,另一种是城市中心。我决定拖动其中一个并放在另一个上,所以当按钮在另一个上时,我检查文本两个按钮以编程方式。请帮我...
您可以通过以下方式获取按钮文本:
YourBtn.getText().toString();
您可以通过以下方式比较它们:
if(YourBtn.getText().toString().equal(SecondButton.getText.toString())) { //do your work }
编辑:如何在 Android 中制作拖放按钮