add View To Parent Last Index - Android User Interface

Android examples for User Interface:View Parent

Description

add View To Parent Last Index

Demo Code


//package com.java2s;

import android.view.View;
import android.view.ViewGroup;

public class Main {
    public static void addViewToParent_LastIndex(ViewGroup parent,
            View viewToAdd) {//from  w  ww.j a  va  2 s .c o m
        parent.addView(viewToAdd);
    }
}

Related Tutorials