Android tablayout and toolbar

来源:互联网 发布:origin软件使用教程 编辑:程序博客网 时间:2024/06/18 01:46

Adroid tablayout and toolbar

http://www.truiton.com/2015/06/android-tabs-example-fragments-viewpager/



Toolbar back button.

You can add your own 'up' button in toolbar, after all it is just a ViewGroup.

You can customize toolbar as much as you want, in your toolbar.xml, or wherever you have defined android.support.v7.widget.Toolbar in your layout add your 'up' button like given below :

<android.support.v7.widget.Toolbar   xmlns:android="http://schemas.android.com/apk/res/android"   android:id="@+id/toolbar"   android:minHeight="?attr/actionBarSize"   android:layout_height="?attr/actionBarSize"   android:background="@drawable/color_toolbar"   android:layout_width="match_parent">   <ImageButton       android:id="@+id/upButton"       android:layout_width="wrap_content"       android:layout_height="wrap_content"       android:onClick="uphandler"       android:src="@drawable/backbutton"       android:layout_gravity="end"/></android.support.v7.widget.Toolbar>

Now, define uphandler function in your activity to listen to this up button :

public void uphandler(View v){       this.finish();    // This will kill current activity, and if previous activity is still opened in background, it will come in front.}


0 0
原创粉丝点击