Access to Tabhost objects in android

49 Views Asked by At

I have created some new tabs with new contents in a Tabhost and I want to access to their children to edit.

I have used this code for getting all objects in Tabhost but it doesn't give the current objects in Tabhost but objects that I have created in my project initially.

int cnt = host.getTabContentView().getChildCount();
    for ( int j=0 ; j<cnt ; j++ ) {
        System.out.println( "\nChild " + j + " : \n" );
        LinearLayout ll = (LinearLayout) (host.getTabContentView().getChildAt(j));

        final int childcount = ll.getChildCount();
        for (int i = 0; i < childcount; i++) {
            View v = ll.getChildAt(i);
            System.out.println(v.getId());
            System.out.println(v.toString());
        }
    }

I want to get access to current existed objects in TabHost. Please, Can you help me ?

0

There are 0 best solutions below