SYMBOL INDEX (469 symbols across 47 files) FILE: pedometer/src/com/bit/pedometer/common/utils/BmobUtil.java class BmobUtil (line 15) | public class BmobUtil { method saveBmob (line 17) | public static void saveBmob(final User user, method queryBmob (line 58) | public static void queryBmob(final BmobQueryListener listener, type BmobSaveAndUpdataListener (line 85) | public interface BmobSaveAndUpdataListener{ method onFinishedSave (line 86) | void onFinishedSave(User user); method onFailure (line 87) | void onFailure(String str); method onFinishedupdata (line 88) | void onFinishedupdata(User user); type BmobQueryListener (line 92) | public interface BmobQueryListener{ method onQuerySuccess (line 93) | void onQuerySuccess(List users); method onFailure (line 94) | void onFailure(String str); FILE: pedometer/src/com/bit/pedometer/common/utils/HttpCallbackListener.java type HttpCallbackListener (line 3) | public interface HttpCallbackListener { method onFinish (line 5) | void onFinish(String response); method onError (line 7) | void onError(Exception e); FILE: pedometer/src/com/bit/pedometer/common/utils/HttpUtil.java class HttpUtil (line 9) | public class HttpUtil { method sendHttpRequest (line 18) | public static void sendHttpRequest(final String address, FILE: pedometer/src/com/bit/pedometer/data/bean/Group.java class Group (line 3) | public class Group { method getID (line 9) | public int getID() { method setID (line 13) | public void setID(int iD) { method getTotal_number (line 17) | public int getTotal_number() { method setTotal_number (line 21) | public void setTotal_number(int total_number) { method getMember_number (line 25) | public int getMember_number() { method setMember_number (line 29) | public void setMember_number(int member_number) { FILE: pedometer/src/com/bit/pedometer/data/bean/Step.java class Step (line 3) | public class Step { method getId (line 10) | public int getId() { method setId (line 14) | public void setId(int id) { method getNumber (line 18) | public int getNumber() { method setNumber (line 22) | public void setNumber(int number) { method getDate (line 26) | public String getDate() { method setDate (line 30) | public void setDate(String date) { method getUserId (line 34) | public String getUserId() { method setUserId (line 38) | public void setUserId(String userId) { FILE: pedometer/src/com/bit/pedometer/data/bean/User.java class User (line 8) | public class User extends BmobObject implements Serializable { method getToday_step (line 24) | public int getToday_step() { method setToday_step (line 28) | public void setToday_step(int today_step) { method getPicture (line 32) | public byte[] getPicture() { method setPicture (line 36) | public void setPicture(byte[] picture) { method getGroupId (line 40) | public int getGroupId() { method setGroupId (line 44) | public void setGroupId(int groupId) { method getName (line 50) | public String getName() { method setName (line 54) | public void setName(String name) { method getSex (line 58) | public String getSex() { method setSex (line 62) | public void setSex(String sex) { method getWeight (line 66) | public int getWeight() { method setWeight (line 70) | public void setWeight(int weight) { method getSensitivity (line 74) | public int getSensitivity() { method setSensitivity (line 78) | public void setSensitivity(int sensitivity) { method getStep_length (line 82) | public int getStep_length() { method setStep_length (line 86) | public void setStep_length(int step_length) { FILE: pedometer/src/com/bit/pedometer/data/bean/Weather.java class Weather (line 5) | public class Weather{ method getCityid (line 17) | public int getCityid() { method setCityid (line 20) | public void setCityid(int cityid) { method getCity (line 23) | public String getCity() { method setCity (line 26) | public void setCity(String city) { method getTemp1 (line 29) | public String getTemp1() { method setTemp1 (line 32) | public void setTemp1(String temp1) { method getTemp2 (line 35) | public String getTemp2() { method setTemp2 (line 38) | public void setTemp2(String temp2) { method getWeather (line 41) | public String getWeather() { method setWeather (line 44) | public void setWeather(String weather) { method getPtime (line 47) | public String getPtime() { method setPtime (line 50) | public void setPtime(String ptime) { FILE: pedometer/src/com/bit/pedometer/data/db/PedometerDB.java class PedometerDB (line 23) | public class PedometerDB { method PedometerDB (line 40) | private PedometerDB(Context context) { method getInstance (line 49) | public synchronized static PedometerDB getInstance(Context context) { method saveUser (line 61) | public void saveUser(User user) { method deleteUser (line 82) | public void deleteUser(User user) { method updateUser (line 94) | public void updateUser(User user) { method changeObjectId (line 116) | public void changeObjectId(User user) { method saveStep (line 129) | public void saveStep(Step step) { method updateStep (line 144) | public void updateStep(Step step) { method changeuserId (line 160) | public void changeuserId(Step step) { method saveGroup (line 175) | public void saveGroup(Group group) { method updateGroup (line 189) | public void updateGroup(Group group) { method saveWeather (line 204) | public void saveWeather(Weather weather) { method loadGroup (line 222) | public Group loadGroup(int id) { method loadSteps (line 248) | public Step loadSteps(String userId, String date) { method loadListGroup (line 271) | public List loadListGroup() { method lodListUsers (line 296) | public List lodListUsers() { method loadListSteps (line 330) | public List loadListSteps() { method loadUser (line 356) | public User loadUser(String objectId) { method loadFirstUser (line 388) | public User loadFirstUser() { method loadWeather (line 417) | public Weather loadWeather(String date) { FILE: pedometer/src/com/bit/pedometer/data/db/PedometerOpenHelper.java class PedometerOpenHelper (line 8) | public class PedometerOpenHelper extends SQLiteOpenHelper{ method PedometerOpenHelper (line 60) | public PedometerOpenHelper(Context context, String name, method onCreate (line 65) | @Override method onUpgrade (line 76) | @Override FILE: pedometer/src/com/bit/pedometer/receiver/AutoSaveReceiver.java class AutoSaveReceiver (line 10) | public class AutoSaveReceiver extends BroadcastReceiver{ method onReceive (line 12) | @Override FILE: pedometer/src/com/bit/pedometer/service/AutoSaveService.java class AutoSaveService (line 17) | public class AutoSaveService extends Service { method onBind (line 25) | @Override method onCreate (line 30) | @Override method onStartCommand (line 36) | @Override method init (line 43) | @SuppressLint("SimpleDateFormat") FILE: pedometer/src/com/bit/pedometer/service/MyService.java class MyService (line 14) | public abstract class MyService extends IntentService { method MyService (line 20) | public MyService(String name) { class ServiceHandler (line 30) | private final class ServiceHandler extends Handler { method ServiceHandler (line 31) | public ServiceHandler(Looper looper) { method handleMessage (line 35) | @Override method setIntentRedelivery (line 42) | public void setIntentRedelivery(boolean enabled) { method onCreate (line 46) | @Override method onStart (line 60) | public void onStart(Intent intent, int startId) { method onStartCommand (line 74) | @Override method onDestroy (line 80) | @Override method onBind (line 91) | @Override method onHandleIntent (line 108) | protected abstract void onHandleIntent(Intent intent); FILE: pedometer/src/com/bit/pedometer/service/StepDetector.java class StepDetector (line 15) | public class StepDetector implements SensorEventListener { method StepDetector (line 37) | public StepDetector(Context context) { method onSensorChanged (line 46) | public void onSensorChanged(SensorEvent event) { method onAccuracyChanged (line 96) | public void onAccuracyChanged(Sensor arg0, int arg1) { FILE: pedometer/src/com/bit/pedometer/service/StepService.java class StepService (line 10) | public class StepService extends Service { method onBind (line 15) | @Override method onCreate (line 21) | @Override method startStepDetector (line 33) | private void startStepDetector() { method onStartCommand (line 44) | @Override method onDestroy (line 49) | @Override FILE: pedometer/src/com/bit/pedometer/ui/activity/BaseActivity.java class BaseActivity (line 28) | public abstract class BaseActivity extends FragmentActivity { method onCreate (line 61) | @Override method setContentView (line 76) | protected abstract void setContentView(); method initView (line 81) | protected abstract void initView(); method setTitle (line 86) | protected abstract void setTitle(); method initData (line 91) | protected abstract void initData(); method setEvent (line 96) | protected abstract void setEvent(); method init (line 99) | private void init() { method getView (line 126) | protected T getView(int viewId) { method setTitleText (line 136) | protected void setTitleText(String str) { method setMyTitleColor (line 146) | protected void setMyTitleColor(String colorStr) { method setMyTitleColor (line 156) | protected void setMyTitleColor(int color) { method showLeftWithImage (line 167) | protected void showLeftWithImage(int resId, method showLeftWithText (line 184) | protected void showLeftWithText(String str, method showRightWithImage (line 201) | protected void showRightWithImage(int resId, method showRightWithSecondImage (line 218) | protected void showRightWithSecondImage(int resId, method showRightWithText (line 235) | protected void showRightWithText(String str, method showToast (line 252) | protected void showToast(int strId, boolean[] booleans) { method showToast (line 263) | protected void showToast(final String str, final boolean[] booleans) { method closeSoftKeyboard (line 300) | protected void closeSoftKeyboard() { method showSoftKeyboard (line 310) | protected void showSoftKeyboard() { method showToast (line 314) | protected void showToast(String str) { method showToast (line 318) | protected void showToast(int strId) { method showProgressDialog (line 328) | protected void showProgressDialog(final String message) { method showProgressDialog (line 356) | protected void showProgressDialog(final String message, final DialogIn... method showDialog (line 375) | protected void showDialog(final String message, final View.OnClickList... method showDialog (line 405) | protected void showDialog(final String message, method showDialog (line 438) | protected void showDialog(final String message, final View.OnClickList... method cancelProgressDialog (line 461) | protected void cancelProgressDialog() { method cancelDialog (line 469) | protected void cancelDialog() { method onLight (line 478) | protected void onLight() { method offLight (line 487) | protected void offLight() { FILE: pedometer/src/com/bit/pedometer/ui/activity/MainActivity.java class MainActivity (line 28) | public class MainActivity extends FragmentActivity { method onCreate (line 35) | @Override FILE: pedometer/src/com/bit/pedometer/ui/activity/SetToTakePicActivity.java class SetToTakePicActivity (line 14) | public class SetToTakePicActivity extends Activity { method onCreate (line 22) | @Override class mOnClickListener (line 38) | class mOnClickListener implements View.OnClickListener { method onClick (line 39) | @Override FILE: pedometer/src/com/bit/pedometer/ui/activity/WelcomeActivity.java class WelcomeActivity (line 20) | public class WelcomeActivity extends Activity { method onCreate (line 23) | @Override FILE: pedometer/src/com/bit/pedometer/ui/fragment/FragmentAdapter.java class FragmentAdapter (line 27) | public class FragmentAdapter implements OnCheckedChangeListener { method FragmentAdapter (line 34) | @SuppressLint("SimpleDateFormat") method onCheckedChanged (line 84) | public void onCheckedChanged(RadioGroup arg0, int arg1) { method showFragment (line 107) | private void showFragment(int i) { method getCurrentFragment (line 125) | private Fragment getCurrentFragment() { method obtainFragmentTransaction (line 134) | private FragmentTransaction obtainFragmentTransaction(int i) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/FragmentAnalysis.java class FragmentAnalysis (line 25) | public class FragmentAnalysis extends Fragment implements OnTouchListener { method onCreateView (line 51) | @Override method onActivityCreated (line 58) | @Override method init (line 68) | @SuppressLint("ClickableViewAccessibility") method setProgress (line 88) | @SuppressLint("SimpleDateFormat") method setWeek (line 175) | private void setWeek() { method week (line 184) | private String week(int day) { class AllAnimation (line 208) | private class AllAnimation extends Animation { method applyTransformation (line 209) | @Override method onTouch (line 228) | @SuppressLint("ClickableViewAccessibility") method dp2px (line 249) | private int dp2px(int value) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/FragmentHistory.java class FragmentHistory (line 28) | public class FragmentHistory extends Fragment implements OnClickListener { method onCreateView (line 55) | @Override method onActivityCreated (line 62) | @Override method init (line 69) | @SuppressLint("SimpleDateFormat") method onClick (line 101) | @Override method insert (line 136) | private void insert() { method queryStep (line 334) | private void queryStep() { class AllAnimation (line 350) | private class AllAnimation extends Animation { method applyTransformation (line 351) | @Override FILE: pedometer/src/com/bit/pedometer/ui/fragment/FragmentPK.java class FragmentPK (line 28) | public class FragmentPK extends Fragment { method onCreateView (line 42) | @Override method initTabline (line 51) | private void initTabline() { method init (line 66) | private void init() { FILE: pedometer/src/com/bit/pedometer/ui/fragment/FragmentPedometer.java class FragmentPedometer (line 40) | public class FragmentPedometer extends Fragment implements OnClickListen... method handleMessage (line 62) | public void handleMessage(Message msg) { method onCreateView (line 88) | @Override method onPause (line 97) | @Override method onDestroy (line 102) | @Override method saveDate (line 110) | private void saveDate() { method init (line 125) | @SuppressLint("SimpleDateFormat") method mThread (line 169) | private void mThread() { method queryFromServer (line 191) | @SuppressLint("SimpleDateFormat") method onClick (line 220) | @Override FILE: pedometer/src/com/bit/pedometer/ui/fragment/FragmentSet.java class FragmentSet (line 41) | public class FragmentSet extends Fragment implements OnClickListener { method onCreateView (line 78) | @Override method onPause (line 87) | @Override method onDestroy (line 94) | @Override method init (line 100) | @SuppressLint("SimpleDateFormat") method onClick (line 178) | @Override method setSensitivity (line 283) | private void setSensitivity(int value) { method onActivityResult (line 321) | @Override method startPhotoZoom (line 409) | public void startPhotoZoom(Uri uri, int witch) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/PK/FragmentPK_1.java class FragmentPK_1 (line 31) | public class FragmentPK_1 extends Fragment implements OnItemClickListener, method onCreateView (line 41) | @Override method onResume (line 50) | @Override method init (line 57) | @SuppressLint("SimpleDateFormat") method showList (line 68) | private void showList() { method onItemClick (line 79) | @SuppressLint("InflateParams") method onReflash (line 126) | @Override FILE: pedometer/src/com/bit/pedometer/ui/fragment/PK/FragmentPK_2.java class FragmentPK_2 (line 22) | public class FragmentPK_2 extends Fragment implements OnChildClickListen... method onCreateView (line 32) | public View onCreateView(LayoutInflater inflater, ViewGroup container, method onResume (line 41) | @Override method onPause (line 47) | @Override method showData (line 53) | private void showData() { method init (line 63) | private void init() { method prepareData (line 72) | private void prepareData() { method onChildClick (line 87) | @Override FILE: pedometer/src/com/bit/pedometer/ui/fragment/PK/FragmentPK_addmember.java class FragmentPK_addmember (line 28) | public class FragmentPK_addmember extends FragmentActivity implements method onCreate (line 39) | @Override method init (line 49) | private void init() { method queryAll (line 92) | private void queryAll() { method showProgressDialog (line 126) | private void showProgressDialog() { method closeProgressDialog (line 138) | private void closeProgressDialog() { method onClick (line 144) | @Override method onReflash (line 158) | @Override FILE: pedometer/src/com/bit/pedometer/ui/fragment/PK/FragmentPK_memberset.java class FragmentPK_memberset (line 21) | public class FragmentPK_memberset extends FragmentActivity implements method onCreate (line 38) | @Override method init (line 47) | private void init() { method onClick (line 100) | @Override FILE: pedometer/src/com/bit/pedometer/ui/fragment/onekeyshare/CustomerLogo.java class CustomerLogo (line 15) | public class CustomerLogo { FILE: pedometer/src/com/bit/pedometer/ui/fragment/onekeyshare/EditPage.java class EditPage (line 54) | public class EditPage extends FakeActivity implements OnClickListener, T... method setShareData (line 79) | public void setShareData(HashMap data) { method setParent (line 83) | public void setParent(OnekeyShare parent) { method setDialogMode (line 88) | public void setDialogMode() { method setActivity (line 92) | public void setActivity(Activity activity) { method onCreate (line 102) | public void onCreate() { method initPageView (line 138) | private void initPageView() { method checkAtMth (line 369) | private void checkAtMth(LinearLayout llInput, String platform) { method getName (line 412) | private String getName(String platform) { method onClick (line 421) | public void onClick(View v) { method handleMessage (line 511) | public boolean handleMessage(Message msg) { method afterPlatformListGot (line 522) | public void afterPlatformListGot() { method getPlatLogo (line 575) | private Bitmap getPlatLogo(Platform plat) { method beforeTextChanged (line 590) | public void beforeTextChanged(CharSequence s, int start, int count, method onTextChanged (line 595) | public void onTextChanged(CharSequence s, int start, int before, int c... method afterTextChanged (line 601) | public void afterTextChanged(Editable s) { method onResult (line 605) | public void onResult(ArrayList selected) { method finish (line 613) | public void finish() { FILE: pedometer/src/com/bit/pedometer/ui/fragment/onekeyshare/FollowList.java class FollowList (line 45) | public class FollowList extends FakeActivity implements OnClickListener,... method setPlatform (line 51) | public void setPlatform(Platform platform) { method onCreate (line 55) | public void onCreate() { method onClick (line 114) | public void onClick(View v) { method onItemClick (line 149) | public void onItemClick(AdapterView parent, View view, int position... method setBackPage (line 155) | public void setBackPage(EditPage page) { class FollowAdapter (line 159) | private static class FollowAdapter extends PullToRefreshListAdapter method FollowAdapter (line 170) | public FollowAdapter(PullToRefreshView view) { method setPlatform (line 189) | public void setPlatform(Platform platform) { method next (line 194) | private void next() { method getView (line 200) | public View getView(int position, View convertView, ViewGroup parent) { method getItem (line 272) | public Following getItem(int position) { method getItemId (line 276) | public long getItemId(int position) { method getCount (line 280) | public int getCount() { method getHeaderView (line 284) | public View getHeaderView() { method onPullDown (line 288) | public void onPullDown(int percent) { method onRequest (line 292) | public void onRequest() { method onCancel (line 300) | public void onCancel(Platform plat, int action) { method onComplete (line 304) | public void onComplete(Platform plat, int action, HashMap parseList(HashMap res) { method handleMessage (line 419) | public boolean handleMessage(Message msg) { method onReversed (line 434) | public void onReversed() { class FollowListItem (line 441) | private static class FollowListItem { class Following (line 448) | private static class Following { class PRTHeader (line 456) | private static class PRTHeader extends LinearLayout { method PRTHeader (line 461) | public PRTHeader(Context context) { method onPullDown (line 497) | public void onPullDown(int percent) { method onRequest (line 524) | public void onRequest() { method reverse (line 533) | public void reverse() { class RotateImageView (line 541) | private static class RotateImageView extends ImageView { method RotateImageView (line 544) | public RotateImageView(Context context) { method setRotation (line 548) | public void setRotation(int degree) { method onDraw (line 553) | protected void onDraw(Canvas canvas) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/onekeyshare/OnekeyShare.java class OnekeyShare (line 54) | public class OnekeyShare extends FakeActivity implements method OnekeyShare (line 81) | public OnekeyShare() { method show (line 87) | public void show(Context context) { method setNotification (line 92) | public void setNotification(int icon, String title) { method setAddress (line 98) | public void setAddress(String address) { method setTitle (line 103) | public void setTitle(String title) { method setTitleUrl (line 108) | public void setTitleUrl(String titleUrl) { method setText (line 113) | public void setText(String text) { method getText (line 118) | public String getText() { method setImagePath (line 123) | public void setImagePath(String imagePath) { method setImageUrl (line 129) | public void setImageUrl(String imageUrl) { method setUrl (line 135) | public void setUrl(String url) { method setFilePath (line 140) | public void setFilePath(String filePath) { method setComment (line 145) | public void setComment(String comment) { method setSite (line 150) | public void setSite(String site) { method setSiteUrl (line 155) | public void setSiteUrl(String siteUrl) { method setVenueName (line 160) | public void setVenueName(String venueName) { method setVenueDescription (line 165) | public void setVenueDescription(String venueDescription) { method setLatitude (line 170) | public void setLatitude(float latitude) { method setLongitude (line 175) | public void setLongitude(float longitude) { method setSilent (line 180) | public void setSilent(boolean silent) { method setPlatform (line 185) | public void setPlatform(String platform) { method setCallback (line 190) | public void setCallback(PlatformActionListener callback) { method getCallback (line 195) | public PlatformActionListener getCallback() { method setShareContentCustomizeCallback (line 200) | public void setShareContentCustomizeCallback(ShareContentCustomizeCall... method getShareContentCustomizeCallback (line 205) | public ShareContentCustomizeCallback getShareContentCustomizeCallback() { method setCustomerLogo (line 210) | public void setCustomerLogo(Bitmap logo, String label, OnClickListener... method disableSSOWhenAuthorize (line 219) | public void disableSSOWhenAuthorize() { method setDialogMode (line 224) | public void setDialogMode() { method onCreate (line 229) | public void onCreate() { method initPageView (line 283) | private void initPageView() { method initAnim (line 332) | private void initAnim() { method onClick (line 348) | public void onClick(View v) { method onKeyEvent (line 355) | public boolean onKeyEvent(int keyCode, KeyEvent event) { method onConfigurationChanged (line 362) | public void onConfigurationChanged(Configuration newConfig) { method finish (line 368) | public void finish() { method share (line 403) | public void share(HashMap> shareData) { method onComplete (line 510) | public void onComplete(Platform platform, int action, method onError (line 520) | public void onError(Platform platform, int action, Throwable t) { method onCancel (line 534) | public void onCancel(Platform platform, int action) { method handleMessage (line 543) | public boolean handleMessage(Message msg) { method showNotification (line 617) | @SuppressWarnings("deprecation") FILE: pedometer/src/com/bit/pedometer/ui/fragment/onekeyshare/PicViewer.java class PicViewer (line 20) | public class PicViewer extends FakeActivity implements OnClickListener { method setImageBitmap (line 25) | public void setImageBitmap(Bitmap pic) { method onCreate (line 32) | public void onCreate() { method onClick (line 43) | public void onClick(View v) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/onekeyshare/PlatformGridView.java class PlatformGridView (line 41) | public class PlatformGridView extends LinearLayout implements method PlatformGridView (line 65) | public PlatformGridView(Context context) { method PlatformGridView (line 70) | public PlatformGridView(Context context, AttributeSet attrs) { method init (line 75) | private void init(final Context context) { method calPageSize (line 96) | private void calPageSize() { method handleMessage (line 121) | public boolean handleMessage(Message msg) { method afterPlatformListGot (line 132) | public void afterPlatformListGot() { method onConfigurationChanged (line 183) | public void onConfigurationChanged() { method setData (line 194) | public void setData(HashMap data, boolean silent) { method setCustomerLogos (line 200) | public void setCustomerLogos(ArrayList customers) { method setParent (line 205) | public void setParent(OnekeyShare parent) { method onClick (line 209) | public void onClick(View v) { method disableOverScrollMode (line 245) | private void disableOverScrollMode(View view) { class PlatformAdapter (line 260) | private static class PlatformAdapter extends ViewPagerAdapter { method PlatformAdapter (line 267) | public PlatformAdapter(PlatformGridView platformGridView) { method getCount (line 292) | public int getCount() { method getView (line 296) | public View getView(int position, ViewGroup parent) { method onScreenChange (line 324) | public void onScreenChange(int currentScreen, int lastScreen) { class GridView (line 336) | private static class GridView extends LinearLayout { method GridView (line 342) | public GridView(PlatformAdapter platformAdapter) { method setData (line 348) | public void setData(int lines, Object[] beans) { method init (line 354) | private void init() { method getView (line 395) | private LinearLayout getView(int position, OnClickListener ocL, Cont... method getIcon (line 442) | private Bitmap getIcon(Platform plat) { method getName (line 457) | private String getName(Platform plat) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/onekeyshare/ShareContentCustomizeCallback.java type ShareContentCustomizeCallback (line 5) | public interface ShareContentCustomizeCallback { method onShare (line 7) | public void onShare(Platform platform, Platform.ShareParams paramsToSh... FILE: pedometer/src/com/bit/pedometer/ui/fragment/onekeyshare/ShareCore.java class ShareCore (line 25) | public class ShareCore { method setShareContentCustomizeCallback (line 32) | public void setShareContentCustomizeCallback(ShareContentCustomizeCall... method share (line 37) | public boolean share(Platform plat, HashMap data) { method getShareParams (line 58) | private Platform.ShareParams getShareParams(Platform plat, method isUseClientToShare (line 97) | public static boolean isUseClientToShare(Context context, String platf... method canAuthorize (line 116) | public static boolean canAuthorize(Context context, String platform) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/tools/DisplayUtil.java class DisplayUtil (line 5) | public class DisplayUtil { method px2dip (line 15) | public static int px2dip(Context context, float pxValue) { method dip2px (line 28) | public static int dip2px(Context context, float dipValue) { method px2sp (line 41) | public static int px2sp(Context context, float pxValue) { method sp2px (line 54) | public static int sp2px(Context context, float spValue) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/tools/ExpandableListViewAdapter.java class ExpandableListViewAdapter (line 21) | public class ExpandableListViewAdapter extends BaseExpandableListAdapter { method ExpandableListViewAdapter (line 35) | public ExpandableListViewAdapter(Context context, List group, method changeExpandableList (line 44) | public void changeExpandableList(List group, method getChild (line 51) | @Override method getChildId (line 57) | @Override class ViewChildHolder (line 62) | private class ViewChildHolder { method getChildView (line 70) | @SuppressLint("SimpleDateFormat") method getChildrenCount (line 103) | @Override method getGroup (line 113) | @Override method getGroupCount (line 119) | @Override method getGroupId (line 125) | @Override method getGroupView (line 131) | @Override class ViewGroupHolder (line 163) | private class ViewGroupHolder { method hasStableIds (line 168) | @Override method isChildSelectable (line 174) | @Override method onGroupExpanded (line 180) | @Override FILE: pedometer/src/com/bit/pedometer/ui/fragment/tools/MyAdapter.java class MyAdapter (line 22) | public class MyAdapter extends BaseAdapter { method MyAdapter (line 32) | public MyAdapter(Context context, List user_list, method onDateChange (line 42) | public void onDateChange(List user_list) { method setPosition (line 47) | public void setPosition(int position) { method getCount (line 52) | @Override method getItem (line 58) | @Override method getItemId (line 65) | @Override method getView (line 72) | @Override class ViewHolder (line 142) | private class ViewHolder { FILE: pedometer/src/com/bit/pedometer/ui/fragment/tools/MyListAdapter.java class MyListAdapter (line 23) | public class MyListAdapter extends BaseAdapter { method MyListAdapter (line 29) | public MyListAdapter(Context context, List users, method changeData (line 37) | public void changeData(List users) { method getCount (line 42) | @Override method getItem (line 48) | @Override method getItemId (line 54) | @Override method getView (line 60) | @Override class ViewHolder (line 89) | private class ViewHolder { FILE: pedometer/src/com/bit/pedometer/ui/fragment/tools/MyNumberPicker.java class MyNumberPicker (line 10) | public class MyNumberPicker extends NumberPicker { method MyNumberPicker (line 12) | public MyNumberPicker(Context context, AttributeSet attrs, int defStyl... method MyNumberPicker (line 17) | public MyNumberPicker(Context context, AttributeSet attrs) { method MyNumberPicker (line 22) | public MyNumberPicker(Context context) { method addView (line 27) | @Override method addView (line 34) | @Override method addView (line 42) | @Override method updateView (line 49) | public void updateView(View view) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/tools/PictureUtil.java class PictureUtil (line 14) | public class PictureUtil { method compressBmpFromBmp (line 16) | public static Bitmap compressBmpFromBmp(Bitmap image) { method compressByScale (line 30) | public static Bitmap compressByScale(Bitmap image) { method compressImage (line 66) | public static Bitmap compressImage(Bitmap image) { method Bitmap2Byte (line 82) | public static byte[] Bitmap2Byte(Bitmap bitmap) { method Byte2Bitmap (line 94) | public static Bitmap Byte2Bitmap(byte[] temp) { method drawable2Bitmap (line 103) | public static Bitmap drawable2Bitmap(Drawable drawable) { FILE: pedometer/src/com/bit/pedometer/ui/fragment/tools/ReFlashListView.java class ReFlashListView (line 25) | public class ReFlashListView extends ListView implements OnScrollListene... method ReFlashListView (line 45) | public ReFlashListView(Context context, AttributeSet attrs) { method initView (line 57) | private void initView(Context context) { method onLayout (line 70) | @Override method measureView (line 84) | private void measureView(View view) { method topPadding (line 107) | private void topPadding(int topPadding) { method onScroll (line 117) | @Override method onScrollStateChanged (line 126) | @Override method onTouch (line 132) | @Override method onMove (line 170) | private void onMove(MotionEvent ev) { method reflashViewByState (line 209) | private void reflashViewByState() { method reflashComplete (line 256) | @SuppressLint("SimpleDateFormat") method setInterface (line 269) | public void setInterface(IReflashListener iReflashListener) { type IReflashListener (line 279) | public interface IReflashListener { method onReflash (line 280) | public void onReflash(); FILE: pedometer/src/com/bit/pedometer/ui/fragment/tools/ToRoundBitmap.java class ToRoundBitmap (line 13) | public class ToRoundBitmap { method ToRoundBitmap (line 17) | private ToRoundBitmap(Context context) { method getInstance (line 20) | public static ToRoundBitmap getInstance(Context context) { method toRoundBitmap (line 28) | public Bitmap toRoundBitmap(Bitmap bitmap) { FILE: pedometer/src/com/bit/pedometer/ui/view/CircleBar.java class CircleBar (line 24) | public class CircleBar extends View { method CircleBar (line 48) | public CircleBar(Context context) { method CircleBar (line 53) | public CircleBar(Context context, AttributeSet attrs) { method CircleBar (line 58) | public CircleBar(Context context, AttributeSet attrs, int defStyle) { method init (line 63) | private void init() { method onDraw (line 114) | @SuppressLint("DrawAllocation") method onMeasure (line 177) | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { method startCustomAnimation (line 192) | public void startCustomAnimation() { method setWeather (line 197) | public void setWeather(Weather weather) { method setMax (line 206) | public void setMax(int max) { method setProgress (line 211) | public void setProgress(int progress, int mType) { class BarAnimation (line 232) | public class BarAnimation extends Animation { method applyTransformation (line 244) | @Override FILE: pedometer/src/com/bit/pedometer/ui/view/HistogramView.java class HistogramView (line 20) | public class HistogramView extends View { method HistogramView (line 38) | public HistogramView(Context context) { method HistogramView (line 43) | public HistogramView(Context context, AttributeSet attrs) { method init (line 49) | private void init(Context context, AttributeSet attrs) { method setWeekd (line 68) | public void setWeekd(String[] xWeeks) { method setText (line 73) | public void setText(int[] text) { method setProgress (line 80) | public void setProgress(int[] progress) { method onDraw (line 89) | @SuppressLint("DrawAllocation") method dp2px (line 169) | private int dp2px(int value) { method sp2px (line 173) | private int sp2px(int value) { class HistogramAnimation (line 183) | private class HistogramAnimation extends Animation { method applyTransformation (line 184) | @Override FILE: pedometer/src/com/bit/pedometer/ui/view/MyDialog.java class MyDialog (line 15) | public class MyDialog extends Dialog { method MyDialog (line 38) | public MyDialog(Context context) { method MyDialog (line 43) | public MyDialog(Context context, int theme) { method MyDialog (line 48) | protected MyDialog(Context context, boolean cancelable, OnCancelListen... method onCreate (line 53) | @Override method setDialogTitle (line 75) | public void setDialogTitle(String title) { method setButtonText (line 80) | public void setButtonText(String leftBtn, String rightBtn) { method setDialogContent (line 85) | public void setDialogContent(String content) { method setMyOnclickListener (line 89) | public void setMyOnclickListener(View.OnClickListener cancelListener