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アプリの自動テスト用のプログラムを実行しています。Android デバイス用の robotium を使用して、ビューからテキストのリストを取得したいと考えています。
誰でも私を助けることができますか?
View view = solo.getView(...); if (view instanceof TextView) { String text = ((TextView)view).getText(); }