Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <com.google.android.material.appbar.AppBarLayout
  2. android:layout_width="match_parent"
  3. android:alpha="0.7"
  4. android:id="@+id/bottombarAppbar"
  5. android:layout_height="wrap_content">
  6.  
  7. <com.google.android.material.appbar.MaterialToolbar
  8. android:id="@+id/bottombarToolbar"
  9. app:navigationIcon="@drawable/ic_hide"
  10. app:title="Categories"
  11. app:titleTextColor="#fafafa"
  12. android:layout_width="match_parent"
  13. android:layout_height="?actionBarSize" />
  14. </com.google.android.material.appbar.AppBarLayout>
  15.  
  16. bottombarToolbar.getTitleTextColor()
  17.  
  18. int color = ((ColorDrawable) mToolbar.getBackground()).getColor();
  19.  
  20. toolbar.setTitleTextColor(getColor(R.color.white));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement