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 :

   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">          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"/>

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.}


更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. android 官方文档中的一些错误收集
  2. Android C+源码笔记(1)
  3. Android源码下载和编译
  4. 5个顶级的Android开发库
  5. Flutter 开发突然遇到的坑:Error retrievi
  6. error while loading shared libraries:
  7. android毫秒转化为时间
  8. Android Toast句柄泄露问题
  9. 下载文件
  10. android开关按钮