Back to project page Calma.
The source code is released under:
Apache License
If you think the Android project Calma listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.espian.showcaseview.actionbar.reflection; /* w ww. j a v a 2s.c o m*/ import android.app.Activity; import android.view.View; /** * Created by Alex on 27/10/13. */ public class AppCompatReflector extends BaseReflector { private Activity mActivity; public AppCompatReflector(Activity activity) { mActivity = activity; } @Override public View getHomeButton() { View homeButton = mActivity.findViewById(android.R.id.home); if (homeButton != null) { return homeButton; } int homeId = mActivity.getResources().getIdentifier("home", "id", mActivity.getPackageName()); homeButton = mActivity.findViewById(homeId); if (homeButton == null) { throw new RuntimeException( "insertShowcaseViewWithType cannot be used when the theme " + "has no ActionBar"); } return homeButton; } @Override public void showcaseActionItem(int itemId) { } }