Here you can find the source of getThemeUpIndicator(Object info, Activity activity)
public static Drawable getThemeUpIndicator(Object info, Activity activity)
//package com.java2s; //License from project: Apache License import android.app.Activity; import android.content.res.TypedArray; import android.graphics.drawable.Drawable; public class Main { private static final int[] THEME_ATTRS = new int[] { android.R.attr.homeAsUpIndicator }; public static Drawable getThemeUpIndicator(Object info, Activity activity) {/*w ww. java 2s . c o m*/ final TypedArray a = activity.obtainStyledAttributes(THEME_ATTRS); final Drawable result = a.getDrawable(0); a.recycle(); return result; } }