Guest User

Untitled

a guest
Jan 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. ANDROID
  2. ===================================================================================================================================
  3. setSupportActionBar(tbDocumento);
  4. ActionBar actBar = getSupportActionBar();
  5.  
  6. if (actBar != null) {
  7. actBar.setDisplayHomeAsUpEnabled(true);
  8. actBar.setIcon(R.drawable.ic_shopping_cart);
  9. actBar.setHomeAsUpIndicator(R.drawable.ic_arrow_back);
  10. actBar.setTitle("Editar Documento");
  11. actBar.setDisplayShowTitleEnabled(true);
  12. }
  13. ==================================================================================================================================
  14. xml
  15. ==================================================================================================================================
  16. <android.support.v7.widget.Toolbar
  17. android:id="@+id/tbDocumento"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:background="@color/color_primary"
  21. app:titleMarginStart="@dimen/margin_large"
  22. style="@style/TitleStyle"
  23. app:titleTextColor="@color/color_white"/>
Add Comment
Please, Sign In to add comment