coaches = new ArrayList<>();
45 |
46 | for(int i = 0;i<10;i++){
47 | Coach coach = new Coach();
48 | if("gym".equals(type)) {
49 | coach.setSex("男");
50 | coach.setName("李博天");
51 | coach.setProfile_image_url("http://www.ijiaolian.com/avatar/000/00/62/03_avatar_big.jpg");
52 | coach.setAvailable_areas("知春路");
53 | coach.setCategories("搏击 健身");
54 | }else{
55 | coach.setSex("女");
56 | coach.setName("文琪");
57 | coach.setAvailable_areas("沿海赛洛城");
58 | coach.setCategories("瘦身操");
59 | coach.setProfile_image_url("http://s.114chn.com/HeadPic/big_201307070103.jpeg");
60 | }
61 | coach.setCity("北京");
62 | coach.setCoach_price(i * 100);
63 | coach.setComment_num(i);
64 | coach.setDescription("健身俱乐部健身教练,分为团体操课教练和私人教练,私人健身教练是指在健身俱乐部中一对一进行指导训练的专业健身教练,其作具有互动性、针对性等特点,并且是按课时收费的。");
65 | coach.setDistance(i*100);
66 | coach.setLevel(1);
67 | coach.setOrder_num(i*100);
68 | coach.setScore(4.5f);
69 | coaches.add(coach);
70 | }
71 | return coaches;
72 | }
73 | }
74 |
--------------------------------------------------------------------------------
/app/src/main/java/com/randian/win/view/ScrollExposeListView.java:
--------------------------------------------------------------------------------
1 | package com.randian.win.view;
2 |
3 | import android.annotation.TargetApi;
4 | import android.content.Context;
5 | import android.os.Build;
6 | import android.util.AttributeSet;
7 | import android.util.Log;
8 | import android.view.View;
9 | import android.widget.ListView;
10 |
11 | import com.handmark.pulltorefresh.library.PullToRefreshListView;
12 |
13 | /**
14 | * Created by lily on 15-9-4.
15 | */
16 | public class ScrollExposeListView extends PullToRefreshListView {
17 |
18 |
19 | public ScrollExposeListView(Context context) {
20 | super(context);
21 | }
22 |
23 | public ScrollExposeListView(Context context, AttributeSet attrs) {
24 | super(context, attrs);
25 | }
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/app/src/main/java/com/randian/win/wxapi/WXPayEntryActivity.java:
--------------------------------------------------------------------------------
1 | package com.randian.win.wxapi;
2 |
3 |
4 | import android.app.Activity;
5 | import android.app.AlertDialog;
6 | import android.content.Intent;
7 | import android.os.Bundle;
8 | import android.util.Log;
9 |
10 | import com.randian.win.R;
11 | import com.randian.win.utils.Consts;
12 | import com.tencent.mm.sdk.constants.ConstantsAPI;
13 | import com.tencent.mm.sdk.modelbase.BaseReq;
14 | import com.tencent.mm.sdk.modelbase.BaseResp;
15 | import com.tencent.mm.sdk.openapi.IWXAPI;
16 | import com.tencent.mm.sdk.openapi.IWXAPIEventHandler;
17 | import com.tencent.mm.sdk.openapi.WXAPIFactory;
18 |
19 | public class WXPayEntryActivity extends Activity implements IWXAPIEventHandler {
20 |
21 | private final String TAG = WXPayEntryActivity.this.getClass().getSimpleName();
22 |
23 | private IWXAPI api;
24 |
25 | @Override
26 | public void onCreate(Bundle savedInstanceState) {
27 | super.onCreate(savedInstanceState);
28 | api = WXAPIFactory.createWXAPI(this, Consts.APP_ID);
29 | api.handleIntent(getIntent(), this);
30 | }
31 |
32 | @Override
33 | protected void onNewIntent(Intent intent) {
34 | super.onNewIntent(intent);
35 | setIntent(intent);
36 | api.handleIntent(intent, this);
37 | }
38 |
39 | @Override
40 | public void onReq(BaseReq req) {
41 | }
42 |
43 | /**
44 | * errCode :
45 | * 0 成功
46 | * -1 错误 可能的原因:签名错误、未注册APPID、项目设置APPID不正确、注册的APPID与设置的不匹配、其他异常等。
47 | * -2 用户取消 无需处理。发生场景:用户不支付了,点击取消,返回APP。
48 | * @param resp
49 | */
50 | @Override
51 | public void onResp(BaseResp resp) {
52 | Log.d("lili", "onPayFinish, errCode = " + resp.errCode+" msg:"+resp.errStr);
53 | if (resp.getType() == ConstantsAPI.COMMAND_PAY_BY_WX) {
54 | Log.d(TAG,"onPayFinish,errCode="+resp.errCode);
55 | Intent mIntent = new Intent(Consts.WX_PAY_ACTION);
56 | mIntent.putExtra("status", resp.errCode);
57 | sendBroadcast(mIntent);//发送广播
58 | finish();
59 | }
60 | }
61 | }
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_v3_5_0_31.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_v3_5_0_31.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_v3_5_0_31.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_v3_5_0_31.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libBaiduMapSDK_v3_5_0_31.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/jniLibs/armeabi/libBaiduMapSDK_v3_5_0_31.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/libBaiduMapSDK_v3_5_0_31.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/jniLibs/libBaiduMapSDK_v3_5_0_31.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libBaiduMapSDK_v3_5_0_31.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/jniLibs/x86/libBaiduMapSDK_v3_5_0_31.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/libBaiduMapSDK_v3_5_0_31.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/jniLibs/x86_64/libBaiduMapSDK_v3_5_0_31.so
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/aboutus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/aboutus.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/actionbar_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/actionbar_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/actionbar_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/actionbar_logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/address_search_item_click.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/arrow_right_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/arrow_right_grey.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/avatar_placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/avatar_placeholder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/avatar_sample.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/avatar_sample.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/banner1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/banner1.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/banner2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/banner2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/banner3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/banner3.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/banner4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/banner4.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bubble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/bubble.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bubble_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/bubble_grey.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bubble_grey_high.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/bubble_grey_high.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/choose_coach_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/choose_coach_grey.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/choose_coach_orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/choose_coach_orange.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/coach_list_header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/coach_list_header.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/coupon_invalid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/coupon_invalid.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/coupon_valid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/coupon_valid.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/edit_content_shape.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
10 |
11 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_aboutus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_aboutus.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_address.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_address.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_address_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_address_grey.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_class.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_class.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_clock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_clock.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_clock_orange.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_clock_orange.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_coach.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_coach.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_coupon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_coupon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_feedback.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_feedback.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_grey_point.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_grey_point.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_invite_code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_invite_code.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_login_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_login_phone.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_myorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_myorder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_open.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_orange_point.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_orange_point.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_order.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_order.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_order_again.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_order_again.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_order_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_order_grey.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_order_num.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_order_num.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_phone.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_time_available.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_time_available.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_time_unavailable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_time_unavailable.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_unchecked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_unchecked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_vericode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/icon_vericode.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/js.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/js.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/listitem_shape.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
10 |
11 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/login_btn_shape.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
10 |
11 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/order_btn_shape.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/order_btn_shape_comment.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/order_list_header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/order_list_header.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/pebble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/pebble.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/personal_header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/personal_header.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/splash.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/splash.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/sport_list_header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/sport_list_header.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/star_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/star_gray.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/star_half.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/star_half.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/star_yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/star_yellow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/sub_add_btn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/submit_btn_shape.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
10 |
11 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tab1_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/tab1_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tab1_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/tab1_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tab2_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/tab2_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tab2_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/tab2_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tab3_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/tab3_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tab3_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/tab3_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tab4_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/tab4_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tab4_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/tab4_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tb_munion_icon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tb_munion_item_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/yj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable-xhdpi/yj.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_common_gradient_green.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_common_gradient_orange.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_common_gradient_red.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_cancel_bg_focused.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_cancel_bg_normal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_cancel_bg_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
8 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_cancel_bg_tap.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_check_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
9 |
10 |
13 |
16 |
17 |
20 |
23 |
24 |
27 |
30 |
31 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_close_bg_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
8 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_ok_bg_focused.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_ok_bg_normal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_ok_bg_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
8 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_button_ok_bg_tap.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_dialog_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_title_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/umeng_update_wifi_disable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/drawable/umeng_update_wifi_disable.png
--------------------------------------------------------------------------------
/app/src/main/res/layout/about_us.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
12 |
13 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/actionbar.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
13 |
14 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/address_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/calendar_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/coach_detail.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
15 |
16 |
17 |
22 |
23 |
32 |
33 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/coach_detail_sport_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
13 |
14 |
18 |
19 |
22 |
23 |
24 |
25 |
29 |
30 |
35 |
36 |
45 |
46 |
55 |
56 |
63 |
69 |
70 |
76 |
77 |
86 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/coach_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/coach_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
11 |
12 |
16 |
17 |
20 |
21 |
22 |
23 |
27 |
28 |
33 |
34 |
41 |
42 |
53 |
54 |
62 |
63 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/comment_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
9 |
10 |
15 |
16 |
24 |
25 |
35 |
36 |
43 |
44 |
45 |
46 |
56 |
57 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/comment_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
11 |
12 |
18 |
19 |
29 |
30 |
37 |
38 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/coupon_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
17 |
18 |
26 |
27 |
32 |
33 |
42 |
43 |
54 |
55 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/coupon_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
13 |
22 |
23 |
31 |
32 |
33 |
40 |
47 |
55 |
61 |
68 |
69 |
70 |
79 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/feedback.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
15 |
16 |
25 |
26 |
36 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/indicator.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
10 |
11 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/intro_image.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/my_coupon.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
18 |
19 |
27 |
28 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/my_coupon_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
13 |
22 |
23 |
32 |
33 |
34 |
40 |
48 |
56 |
62 |
69 |
70 |
71 |
80 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/order_calendar.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
24 |
25 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/order_choose_coach.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
15 |
16 |
21 |
28 |
33 |
39 |
44 |
45 |
46 |
57 |
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/order_coach_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
14 |
15 |
19 |
20 |
23 |
24 |
25 |
26 |
30 |
31 |
36 |
37 |
43 |
44 |
53 |
54 |
58 |
65 |
66 |
67 |
68 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/order_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
25 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/order_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
12 |
13 |
17 |
18 |
21 |
22 |
23 |
24 |
28 |
29 |
34 |
35 |
41 |
42 |
50 |
51 |
61 |
62 |
69 |
76 |
77 |
83 |
84 |
95 |
96 |
97 |
98 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/personal.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
16 |
17 |
18 |
19 |
24 |
25 |
29 |
30 |
34 |
35 |
37 |
38 |
39 |
43 |
44 |
48 |
49 |
51 |
52 |
53 |
57 |
58 |
62 |
63 |
65 |
66 |
67 |
71 |
72 |
76 |
78 |
79 |
80 |
81 |
82 |
87 |
88 |
95 |
96 |
97 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/splash.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/sport_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/sport_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
12 |
13 |
17 |
18 |
21 |
22 |
23 |
24 |
28 |
29 |
34 |
35 |
43 |
44 |
54 |
55 |
62 |
68 |
69 |
75 |
76 |
83 |
93 |
94 |
95 |
96 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/sport_list_item_new.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
15 |
16 |
19 |
20 |
24 |
25 |
26 |
30 |
31 |
34 |
35 |
38 |
39 |
43 |
44 |
45 |
49 |
50 |
53 |
54 |
58 |
59 |
60 |
61 |
73 |
74 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/start_image.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
11 |
12 |
19 |
20 |
21 |
22 |
31 |
32 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/tb_munion_aditem.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/view_empty_footer.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/view_image_header_pic.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/view_image_header_slider.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
15 |
16 |
21 |
26 |
30 |
35 |
38 |
39 |
40 |
45 |
49 |
55 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/view_list_footer.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
15 |
16 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/menu.xml:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/raw/comment.json:
--------------------------------------------------------------------------------
1 | {
2 | "comment_num": 20,
3 | "score": 5,
4 | "comments": [
5 | {
6 | "content": "好评",
7 | "created_at": "2015-08-15 13:24:56",
8 | "mobile": "1358****241",
9 | "stars": 5
10 | },
11 | {
12 | "content": "北京体育大学体育教育学士学位,百米国家一级运动员。认证证书:亚洲专业体适能教练(AASFP)、亚洲体适能高级私人教练(AASFP)、普拉提认证教练、GYM ball 认",
13 | "created_at": "2015-08-06 15:06:22",
14 | "mobile": "1851****276",
15 | "stars": 5
16 | },
17 | {
18 | "content": "好评",
19 | "created_at": "2015-08-15 13:24:56",
20 | "mobile": "1358****241",
21 | "stars": 5
22 | },
23 | {
24 | "content": "好评",
25 | "created_at": "2015-08-06 15:06:22",
26 | "mobile": "1851****276",
27 | "stars": 5
28 | },
29 | {
30 | "content": "好评",
31 | "created_at": "2015-08-15 13:24:56",
32 | "mobile": "1358****241",
33 | "stars": 5
34 | },
35 | {
36 | "content": "好评",
37 | "created_at": "2015-08-06 15:06:22",
38 | "mobile": "1851****276",
39 | "stars": 5
40 | },
41 | {
42 | "content": "好评",
43 | "created_at": "2015-08-15 13:24:56",
44 | "mobile": "1358****241",
45 | "stars": 5
46 | },
47 | {
48 | "content": "好评",
49 | "created_at": "2015-08-06 15:06:22",
50 | "mobile": "1851****276",
51 | "stars": 5
52 | },
53 | {
54 | "content": "好评",
55 | "created_at": "2015-08-15 13:24:56",
56 | "mobile": "1358****241",
57 | "stars": 5
58 | },
59 | {
60 | "content": "好评",
61 | "created_at": "2015-08-06 15:06:22",
62 | "mobile": "1851****276",
63 | "stars": 5
64 | }
65 | ]
66 | }
--------------------------------------------------------------------------------
/app/src/main/res/raw/my_coupon.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "coupon_description": "每单仅限使用一张",
4 | "coupon_expire_at": "2015-08-15",
5 | "coupon_fee": 100,
6 | "created_at": "2015-08-08 12:11:39",
7 | "id": 38,
8 | "receive_mobile": 18511878276,
9 | "coupon_state_text": "已领取"
10 | },
11 | {
12 | "coupon_description": "test",
13 | "coupon_expire_at": "2015-07-29",
14 | "coupon_fee": 10,
15 | "created_at": "2015-07-22 15:01:07",
16 | "id": 18,
17 | "receive_mobile": 18511878276,
18 | "coupon_state_text": "已过期"
19 | },
20 | {
21 | "coupon_description": "每单仅限使用一张",
22 | "coupon_expire_at": "2015-07-29",
23 | "coupon_fee": 50,
24 | "created_at": "2015-07-22 16:55:17",
25 | "id": 23,
26 | "receive_mobile": 18511878276,
27 | "coupon_state_text": "已过期"
28 | },
29 | {
30 | "coupon_description": "每单仅限使用一张",
31 | "coupon_expire_at": "2015-07-29",
32 | "coupon_fee": 100,
33 | "created_at": "2015-07-22 17:18:49",
34 | "id": 29,
35 | "receive_mobile": 18511878276,
36 | "coupon_state_text": "已过期"
37 | },
38 | {
39 | "coupon_description": "每单仅限使用一张",
40 | "coupon_expire_at": "2015-08-19",
41 | "coupon_fee": 149,
42 | "created_at": "2015-08-12 15:14:09",
43 | "id": 39,
44 | "receive_mobile": 18511878276,
45 | "coupon_state_text": "已使用"
46 | },
47 | {
48 | "coupon_description": "每单仅限使用一张",
49 | "coupon_expire_at": "2015-08-19",
50 | "coupon_fee": 149,
51 | "created_at": "2015-08-12 15:16:13",
52 | "id": 40,
53 | "receive_mobile": 18511878276,
54 | "coupon_state_text": "已使用"
55 | },
56 | {
57 | "coupon_description": "每单仅限使用一张",
58 | "coupon_expire_at": "2015-08-04",
59 | "coupon_fee": 100,
60 | "created_at": "2015-07-28 19:12:03",
61 | "id": 35,
62 | "receive_mobile": 18511878276,
63 | "coupon_state_text": "已使用"
64 | },
65 | {
66 | "coupon_description": "每单仅限使用一张",
67 | "coupon_expire_at": "2015-07-29",
68 | "coupon_fee": 100,
69 | "created_at": "2015-07-22 16:27:30",
70 | "id": 19,
71 | "receive_mobile": 18511878276,
72 | "coupon_state_text": "已使用"
73 | },
74 | {
75 | "coupon_description": "每单仅限使用一张",
76 | "coupon_expire_at": "2015-07-29",
77 | "coupon_fee": 149,
78 | "created_at": "2015-07-22 16:58:12",
79 | "id": 26,
80 | "receive_mobile": 18511878276,
81 | "coupon_state_text": "已使用"
82 | },
83 | {
84 | "coupon_description": "每单仅限使用一张",
85 | "coupon_expire_at": "2015-07-28",
86 | "coupon_fee": 100,
87 | "created_at": "2015-07-21 21:14:24",
88 | "id": 15,
89 | "receive_mobile": 18511878276,
90 | "coupon_state_text": "已使用"
91 | }
92 | ]
--------------------------------------------------------------------------------
/app/src/main/res/raw/order_coupon_list.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "coupon_description": "每单仅限使用一张",
4 | "coupon_expire_at": "2015-08-15",
5 | "coupon_fee": 100,
6 | "created_at": "2015-08-08 12:11:39",
7 | "id": 38,
8 | "receive_mobile": 18511878276,
9 | "coupon_state_text": "已领取"
10 | },
11 | {
12 | "coupon_description": "每单仅限使用一张",
13 | "coupon_expire_at": "2015-08-20",
14 | "coupon_fee": 60,
15 | "created_at": "2015-08-08 12:11:39",
16 | "id": 39,
17 | "receive_mobile": 18511878276,
18 | "coupon_state_text": "已领取"
19 | },
20 | {
21 | "coupon_description": "每单仅限使用一张",
22 | "coupon_expire_at": "2015-08-15",
23 | "coupon_fee": 100,
24 | "created_at": "2015-08-08 12:11:39",
25 | "id": 40,
26 | "receive_mobile": 18511878276,
27 | "coupon_state_text": "已领取"
28 | },
29 | {
30 | "coupon_description": "每单仅限使用一张",
31 | "coupon_expire_at": "2015-08-15",
32 | "coupon_fee": 100,
33 | "created_at": "2015-08-08 12:11:39",
34 | "id": 41,
35 | "receive_mobile": 18511878276,
36 | "coupon_state_text": "已领取"
37 | }
38 | ]
--------------------------------------------------------------------------------
/app/src/main/res/raw/order_detail.json:
--------------------------------------------------------------------------------
1 | {
2 | "category_name": "瑜伽",
3 | "coach_img_url": "http://7xj017.com1.z0.glb.clouddn.com/o_19p7gkq5h1b26o202n5pn11fdd7.jpg?imageView2/1/w/140/h/140",
4 | "coach_name": "向雪",
5 | "comment_id": 12,
6 | "coupon_id": 40,
7 | "created_at": "2015-08-12 15:18:24",
8 | "mark": "",
9 | "order_cash_fee": 0.01,
10 | "order_coupon_fee": 148.99,
11 | "order_mobile": 18511878276,
12 | "order_no": "11814393639044308975",
13 | "order_off_fee": 89,
14 | "order_pay_fee": 149,
15 | "push_state": 0,
16 | "sport_duration": 60,
17 | "sport_name": "Hatha基础瑜伽",
18 | "sport_order_num": 1,
19 | "sport_start_time": "2015-08-13 17:00:00",
20 | "updated_at": "2015-08-12 15:30:36",
21 | "user_id": 118,
22 | "comment_info": {
23 | "auto_comment": 0,
24 | "coach_id": 6,
25 | "content": "超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵超出了呵呵1234567890123456789",
26 | "created_at": "2015-08-12 15:30:36",
27 | "id": 12,
28 | "is_valid": 1,
29 | "mobile": "1851****276",
30 | "order_no": "11814393639044308975",
31 | "stars": 4,
32 | "user_id": 118
33 | },
34 | "state": "已完成",
35 | "state_code": 5,
36 | "consignee_address": "北京市朝阳区望京soho",
37 | "consignee_street": "一层",
38 | "consignee_mobile": 18511878276,
39 | "consignee_name": "陈励"
40 | }
--------------------------------------------------------------------------------
/app/src/main/res/raw/reorder.json:
--------------------------------------------------------------------------------
1 | {
2 | "sport": {
3 | "abstract_desc": "",
4 | "baidu_sp_service_id": 1,
5 | "created_at": "2015-07-01 11:07:15",
6 | "description": "衣服买了没几天就穿不上?不够瘦穿什么都不好看?不要担心,燃点为大家带来了极速减脂课程!
\r\n本课程为您量身定制一套减脂方案,可针对一人也可对多人,在合理安全的前提下,通过科学的运动与饮食建议帮助您以最快的速度达到减脂的目的,并同时改善身体健康状况,使您能有一个崭新的精神面貌和身体状态。
\r\n场地要求:
\r\n2×2 ㎡的空地
",
7 | "disabled": false,
8 | "disabled_at": null,
9 | "duration": 60,
10 | "id": 3,
11 | "level_four_price": 399,
12 | "level_one_price": 149,
13 | "level_three_price": 269,
14 | "level_two_price": 199,
15 | "max_user_num": 2,
16 | "min_user_num": 1,
17 | "name": "极速减脂",
18 | "num": 1,
19 | "original_price": 300,
20 | "price": 149,
21 | "sport_type": 1,
22 | "updated_at": "2015-08-14 15:46:02",
23 | "visible": true,
24 | "head_image_url": "http://img.randian.net/1439371358215681.jpg"
25 | },
26 | "coach": {
27 | "abstract_desc": "",
28 | "available_areas": "太阳宫",
29 | "comment_num": 3,
30 | "created_at": "2015-07-01 10:54:20",
31 | "description": "北京体育大学体育教育学士学位,百米国家一级运动员。认证证书:亚洲专业体适能教练(AASFP)、亚洲体适能高级私人教练(AASFP)、普拉提认证教练、GYM ball 认证教练、全国首期极塑美臀认证教练。
\r\n从事健身行业已有五年,个人授课累积上万节,带过各种人群,个人经验丰富、曾成功帮助上百位的会员成功减脂,对减脂有自己的一套方法和理论。个人主要擅长:增肌、减脂、塑形、普拉提、搏击、产后恢复、极塑美臀、TRX功能性训练、改善颈椎腰椎问题、矫正身体不良姿态。
\r\n工作格言:只要你付出时间与汗水,我就能给你带去健康的身体与完美的身材,不要让自己的青春留下遗憾!
",
32 | "disabled": false,
33 | "disabled_at": null,
34 | "display_order": 3,
35 | "end_work_at": "21:00",
36 | "hours_class": "12.0",
37 | "id": 14,
38 | "level": 1,
39 | "name": "李博天",
40 | "order_num": 12,
41 | "profile_image_url": "http://img.randian.net/1439371354160422.jpg",
42 | "score": 5,
43 | "sex_code": 1,
44 | "start_work_at": "08:00",
45 | "updated_at": "2015-08-27 17:04:59",
46 | "verified": "亚洲体适能高级私人教练,极塑美臀认证教练,GYM ball认证教练,普拉提认证教练",
47 | "visible": true,
48 | "wechat_qy_id": "qimengyue",
49 | "categories": [
50 | {
51 | "name": "健身"
52 | }
53 | ],
54 | "city": "北京",
55 | "sex": "男",
56 | "location": "longitude: 0.0, latitude: 0.0",
57 | "coach_level_text": "中级教练"
58 | }
59 | }
--------------------------------------------------------------------------------
/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-zh/umeng_common_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 正在下载中.
4 | 下载出错啦,请检查网络后继续。
5 | 暂停
6 | 继续
7 | 取消
8 | 正在下载:
9 | 暂停:
10 | 正在下载应用
11 | 正在更新安装包
12 | 请连接网络后再尝试!
13 | 下载失败
14 | 下载完成,请点击安装
15 | 更新完成,请点击安装
16 | 新版本已经准备好,请点击安装
17 |
18 |
--------------------------------------------------------------------------------
/app/src/main/res/values-zh/umeng_update_string.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 未联网
4 | 发现新版本
5 | 最新版本:
6 | 更新内容
7 | 仅需要下载:
8 | 新版本大小:
9 | (提示:非WIFI环境)
10 | 立即更新
11 | 应用更新
12 | 以后再说
13 | 忽略该版
14 | 正在更新中....
15 | 最新版本已下载,是否安装?
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | #00000000
5 | #ffffff
6 | #000000
7 | #c7c7c7
8 | #808080
9 | #b3b3b3
10 | #f15a24
11 | #f15a24
12 | #e6e6e6
13 | #f4f4f4
14 | #f2eeec
15 | #d8d8d8
16 | #f4f4f4
17 | #ccc
18 | #999999
19 | #dfdfdf
20 | #fcfcfc
21 | #F9F9F9
22 | #b3b3b3
23 | #b2b2b2
24 | #bfbfbf
25 | #f4f4f4
26 | #333333
27 | #f4a83b
28 | #f2f2f2
29 | #333333
30 | #9f9f9f
31 | #999999
32 | #cccccc
33 | #4d4d4d
34 | #e6e6e6
35 | #a4a4a4
36 |
37 | #ababab
38 | #9e9e9e
39 |
40 |
--------------------------------------------------------------------------------
/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
7 | 11sp
8 | 12sp
9 | 13sp
10 | 14sp
11 | 15sp
12 | 16sp
13 | 17sp
14 | 18sp
15 | 20sp
16 | 23sp
17 | 25sp
18 | 27sp
19 | 28sp
20 | 30sp
21 | 35sp
22 | 50sp
23 |
24 | -5dp
25 | 2dp
26 | 3dp
27 | 4dp
28 | 5dp
29 | 6dp
30 | 7dp
31 | 8dp
32 | 9dp
33 | 10dp
34 | 11dp
35 | 12dp
36 | 13dp
37 | 14dp
38 | 15dp
39 | 16dp
40 | 18dp
41 | 20dp
42 | 23dp
43 | 25dp
44 | 30dp
45 | 33dp
46 | 35dp
47 | 37dp
48 | 40dp
49 | 45dp
50 | 50dp
51 | 55dp
52 | 56dp
53 | 60dp
54 | 65dp
55 | 68dp
56 | 70dp
57 | 75dp
58 | 78dp
59 | 80dp
60 | 83dp
61 | 85dp
62 | 90dp
63 | 95dp
64 | 100dp
65 | 105dp
66 | 110dp
67 | 120dp
68 | 130dp
69 | 140dp
70 | 150dp
71 | 180dp
72 | 182dp
73 | 200dp
74 | 220dp
75 | 250dp
76 | 400dp
77 |
78 |
--------------------------------------------------------------------------------
/app/src/main/res/values/tb_munion_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | #e3e3e3
5 | 正在下载:
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values/umeng_common_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | The app is already in downloading list.
4 | dowload interrupted.
5 | Pause
6 | Continue
7 | Cancel
8 | Downloading:
9 | Pause:
10 | Download start.
11 | Patch start.
12 | Please make sure you are connected to internet, download failed
13 | Download Failed!
14 | Download finished,click to install it.
15 | Patch finished,click to install it.
16 | New version is ready,click to install it.
17 | icon
18 |
--------------------------------------------------------------------------------
/app/src/main/res/values/umeng_update_string.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Please make sure you are connected to internet,update failed
5 | New version found
6 | Latest version:
7 | Update Content
8 | Update size:
9 | Target size:
10 | (Warning: Not WIFI Condition)
11 | Update now
12 | App updating
13 | Not now
14 | Ingore this
15 | Updating....
16 | The lastest version has been downloaded, install now ?
17 | 2.6.0.1.20150312
18 |
19 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | mavenCentral()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:1.2.3'
9 | }
10 | }
11 |
12 | allprojects {
13 | repositories {
14 | maven { url '../ThirdParty' }
15 | maven { url "http://dl.bintray.com/populov/maven" }
16 | mavenCentral()
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/build/intermediates/gradle_project_sync_data.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/build/intermediates/gradle_project_sync_data.bin
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Apr 10 15:27:10 PDT 2013
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/local.properties:
--------------------------------------------------------------------------------
1 | ## This file is automatically generated by Android Studio.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must *NOT* be checked into Version Control Systems,
5 | # as it contains information specific to your local configuration.
6 | #
7 | # Location of the SDK. This is only used by Gradle.
8 | # For customization when using a Version Control System, please read the
9 | # header note.
10 | #Sun Sep 20 16:58:39 CST 2015
11 | sdk.dir=/Users/lily/Soft/android-sdk-macosx
12 |
--------------------------------------------------------------------------------
/readmepic/0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/0.jpg
--------------------------------------------------------------------------------
/readmepic/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/1.jpg
--------------------------------------------------------------------------------
/readmepic/2.2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/2.2.jpg
--------------------------------------------------------------------------------
/readmepic/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/2.jpg
--------------------------------------------------------------------------------
/readmepic/3.1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/3.1.jpg
--------------------------------------------------------------------------------
/readmepic/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/3.jpg
--------------------------------------------------------------------------------
/readmepic/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/4.jpg
--------------------------------------------------------------------------------
/readmepic/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/5.jpg
--------------------------------------------------------------------------------
/readmepic/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/6.jpg
--------------------------------------------------------------------------------
/readmepic/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/7.jpg
--------------------------------------------------------------------------------
/readmepic/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/readmepic/8.jpg
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/thirdparty/com/d/pulltorefresh/pulltorefresh/1.4.3/pulltorefresh-1.4.3.aar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoTalkLily/AppKit/6ac33e824cff6721cd2e5a64da4836cbd5d2ff9b/thirdparty/com/d/pulltorefresh/pulltorefresh/1.4.3/pulltorefresh-1.4.3.aar
--------------------------------------------------------------------------------