Ashton
Ashton
the whole new FitbitAndroidSample is here base on the Fitbit OAuth2, you can use these code for example > https://github.com/devonEdison/FitbitTest these code not only provide OAuth2 but also will not...
``` object EasyFloatUtils { fun showGamingMenu(activity: Activity) { EasyFloat.with(activity) .setTag("GamingMenu") .setSidePattern(SidePattern.RESULT_SIDE) .setImmersionStatusBar(true) .setGravity(Gravity.TOP) // 传入View,传入布局文件皆可,如:MyCustomView(this)、R.layout.float_custom .setLayout(R.layout.float_window_game_coin_exchange) { it.findViewById(R.id.root_view).setOnClickListener { root -> root.findViewById(R.id.layout_exchange_menu).apply { visibility = if (visibility == View.GONE) View.VISIBLE...