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.
我正在做一个使用robotium对android应用程序进行自动化测试的程序。我想从使用机器人设备的视图中检索文本列表。
谁能帮我?
View view = solo.getView(...); if (view instanceof TextView) { String text = ((TextView)view).getText(); }