android - Is it possible to show the preview of the activity in another activity as a scrollable preview? -


i have long scroll view contains text views,edit texts,radio buttons,check boxes,sliders etc.. want show preview of scroll view , contents whatever user had entered , should non editable. there possibility in android can this?.

i have 2 suggestions 1.disabling scroll view entering inputs , 2.showing preview of scroll view.

is there possibilities of these 2 or else other methods achieve in android.

need help, in advance..

this method helped disable views.

private static void setviewandchildrenenabled(view view, boolean enabled) { view.setenabled(enabled); if (view instanceof viewgroup) {     viewgroup viewgroup = (viewgroup) view;     (int = 0; < viewgroup.getchildcount(); i++) {         view child = viewgroup.getchildat(i);         setviewandchildrenenabled(child, enabled);     } } 

}

hope 1 else.check this


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -