| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <basepedo.slidinguppanel.SlidingUpPanelLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- xmlns:sothree="http://schemas.android.com/apk/res-auto"
- android:id="@+id/sliding_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="bottom"
- sothree:umanoPanelHeight="68dp"
- sothree:umanoShadowHeight="4dp"
- sothree:umanoParallaxOffset="100dp"
- sothree:umanoDragView="@+id/ll_top"
- sothree:umanoOverlay="true"
- sothree:umanoScrollableView="@+id/list">
- <!-- MAIN CONTENT -->
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <TextView
- android:id="@+id/text_step"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:text="暂未开启UU运动"
- android:textColor="#00cc00"
- android:clickable="true"
- android:focusable="false"
- android:focusableInTouchMode="true"
- android:textSize="16sp" />
- </FrameLayout>
- <!-- SLIDING LAYOUT -->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#ffffff"
- android:clickable="true"
- android:focusable="false"
- android:id="@+id/dragView"
- android:orientation="vertical"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:layout_marginTop="20dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="当前版本须知"
- android:textSize="18sp"
- android:layout_gravity="center_horizontal"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:text="计步功能:触发感应器开始计步,在持续运动3秒后才开始有效计数,不足3秒停止则时间重置,新增步数重置(屏蔽细微移动)。"
- />
- <TextView
- android:visibility="gone"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:text="屏蔽功能:屏蔽细微移动或者驾车时震动所带来的干扰,停止运动超过3秒,便重新开启屏蔽功能(目前版本又去掉了,具体要否再协商)。"
- />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:text="通知栏提醒:实时通知更新步数,但最终只显示持续运动超过3秒的有效步数,通知栏便于实时测试观察,暂时不做点击取消显示(低版本号手机显示会有延迟效果)。"
- />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:text="计步优化:添加数据库记录与更新数据;添加广播事件,监听锁屏、关屏、关机等事件,并进行保存数据的相关操作;调整计步精度;并且数据跨天清零。"/>
- <TextView
- android:visibility="gone"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:text="计步防作弊:这里对波峰以及晃动的时间差做了特殊的处理,只记录放在口袋里的走动或者类似其的运动才会开始计步(主要外勤企业版的需求),所以测试者不要再拿着手机使劲摇的时候问我步数不变动、不准等问题了,请你走动起来测试,谢谢!!!"
- />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="5dp"
- android:text="预关闭功能:考虑下个版本外勤需要,如果当前存在外勤直接关闭不合适,所以预关闭。下次开启应用时判断是否有外勤,无则不开启UU运动,有则开启UU运动。目前UU运动只属于开放测试阶段。"/>
- </LinearLayout>
- </LinearLayout>
- </basepedo.slidinguppanel.SlidingUpPanelLayout>
|