I am launching settings page with following code
Intent intent = new
Intent(android.provider.Settings.ACTION_DATE_SETTINGS);
and then trying to get the text using
ArrayList<TextView> textLists = solo.getCurrentTextViews(this.getActivity().getCurrentFocus());
but i am getting text views of previous activity.
can anyone tell me how to get the new activity in my solo
i even tried following
Solo newSolo = new Solo(null, this.activity);