小知识:就直接上代码了
正常时间戳是13位:
long timeStampSec = System.currentTimeMillis()/1000;
String timestamp = String.format("%010d", timeStampSec);
设置滑动条颜色;
<ScrollView
android:paddingLeft="10dp"
android:paddingRight="10dp"
//设置滑动条所处的位置
android:scrollbarStyle="outsideInset"
//去掉滑动头上的阴影
android:overScrollMode="never"
//设置滑动条的颜色 宽度
android:scrollbarThumbVertical="@drawable/scrollbarcolor"
//设置滑动条方向
android:scrollbars="vertical"
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
drawable代码:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#9bd435"/>
<corners android:radius="2dp"/>
<size android:width="5dp"/>
</shape>
其中当然水平方向的滚动条也是可以自定义的,同时这些也都适用于ListView、RecyclerView。
android:scrollbars=”horizontal”
android:scrollbarThumbHorizontal=”xxx”