实例介绍
Android wear 开发,获取心率(Heart Rate);包含两个包,一个是获取心率的Demo,另一个是android wear 开发的依赖包wearable-1.0.0
【实例截图】
【核心代码】
4744302543292781250.zip
└── Heart Rate
├── HeartRate
│ ├── AndroidManifest.xml
│ ├── assets
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── classes
│ │ │ ├── android
│ │ │ │ └── support
│ │ │ │ └── wearable
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ └── R.class
│ │ │ └── org
│ │ │ └── gztech
│ │ │ └── heartrate
│ │ │ ├── BuildConfig.class
│ │ │ ├── MainActivity$1.class
│ │ │ ├── MainActivity$2.class
│ │ │ ├── MainActivity$3.class
│ │ │ ├── MainActivity$UiThread.class
│ │ │ ├── MainActivity.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$color.class
│ │ │ ├── R$dimen.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ ├── R$styleable.class
│ │ │ ├── R$style.class
│ │ │ └── R.class
│ │ ├── classes.dex
│ │ ├── dexedLibs
│ │ │ ├── android-support-v4-47f739234b19122b02142ff7cb83af3b.jar
│ │ │ ├── classes-9b70e849492435000e48cf244ef4394b.jar
│ │ │ ├── wearable-1.0.0-7242466110b06a1b2154aa0fea913875.jar
│ │ │ └── wearable-1.0.0-javadoc-e7632b252e564446af6bd0b4b68e5609.jar
│ │ ├── HeartRate.apk
│ │ ├── jarlist.cache
│ │ ├── res
│ │ │ └── crunch
│ │ │ ├── drawable-hdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ └── drawable-xxhdpi
│ │ │ └── ic_launcher.png
│ │ ├── resources.ap_
│ │ └── R.txt
│ ├── gen
│ │ ├── android
│ │ │ └── support
│ │ │ └── wearable
│ │ │ └── R.java
│ │ └── org
│ │ └── gztech
│ │ └── heartrate
│ │ ├── BuildConfig.java
│ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xxhdpi
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ ├── rect.xml
│ │ │ └── round.xml
│ │ ├── values
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ └── values-v14
│ │ └── styles.xml
│ └── src
│ └── org
│ └── gztech
│ └── heartrate
│ └── MainActivity.java
└── wearable-1.0.0
├── AndroidManifest.xml
├── assets
├── bin
│ ├── AndroidManifest.xml
│ ├── classes
│ │ └── android
│ │ └── support
│ │ └── wearable
│ │ ├── BuildConfig.class
│ │ ├── R$attr.class
│ │ ├── R$color.class
│ │ ├── R$dimen.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$layout.class
│ │ ├── R$styleable.class
│ │ ├── R$style.class
│ │ └── R.class
│ ├── jarlist.cache
│ ├── res
│ │ └── crunch
│ │ ├── drawable-hdpi
│ │ │ ├── card_frame.9.png
│ │ │ ├── card_frame_pressed.9.png
│ │ │ ├── generic_confirmation_00163.png
│ │ │ ├── generic_confirmation_00164.png
│ │ │ ├── generic_confirmation_00165.png
│ │ │ ├── generic_confirmation_00166.png
│ │ │ ├── generic_confirmation_00167.png
│ │ │ ├── generic_confirmation_00168.png
│ │ │ ├── generic_confirmation_00169.png
│ │ │ ├── generic_confirmation_00170.png
│ │ │ ├── generic_confirmation_00171.png
│ │ │ ├── generic_confirmation_00172.png
│ │ │ ├── generic_confirmation_00173.png
│ │ │ ├── generic_confirmation_00174.png
│ │ │ ├── generic_confirmation_00175.png
│ │ │ ├── generic_confirmation_00176.png
│ │ │ ├── generic_confirmation_00177.png
│ │ │ ├── generic_confirmation_00178.png
│ │ │ ├── generic_confirmation_00179.png
│ │ │ ├── generic_confirmation_00180.png
│ │ │ ├── generic_confirmation_00181.png
│ │ │ ├── generic_confirmation_00182.png
│ │ │ ├── generic_confirmation_00183.png
│ │ │ ├── generic_confirmation_00184.png
│ │ │ ├── generic_confirmation_00185.png
│ │ │ ├── generic_confirmation_00186.png
│ │ │ ├── generic_confirmation_00187.png
│ │ │ ├── generic_confirmation_00188.png
│ │ │ ├── generic_confirmation_00189.png
│ │ │ ├── generic_confirmation_00190.png
│ │ │ ├── generic_confirmation_00191.png
│ │ │ ├── generic_confirmation_00192.png
│ │ │ ├── generic_confirmation_00193.png
│ │ │ ├── go_to_phone_00156.png
│ │ │ ├── go_to_phone_00157.png
│ │ │ ├── go_to_phone_00158.png
│ │ │ ├── go_to_phone_00159.png
│ │ │ ├── go_to_phone_00160.png
│ │ │ ├── go_to_phone_00161.png
│ │ │ ├── go_to_phone_00162.png
│ │ │ ├── go_to_phone_00163.png
│ │ │ ├── go_to_phone_00164.png
│ │ │ ├── go_to_phone_00165.png
│ │ │ ├── go_to_phone_00166.png
│ │ │ ├── go_to_phone_00167.png
│ │ │ ├── go_to_phone_00168.png
│ │ │ ├── go_to_phone_00169.png
│ │ │ ├── go_to_phone_00170.png
│ │ │ ├── go_to_phone_00171.png
│ │ │ ├── go_to_phone_00172.png
│ │ │ ├── go_to_phone_00173.png
│ │ │ ├── go_to_phone_00174.png
│ │ │ ├── go_to_phone_00175.png
│ │ │ ├── go_to_phone_00176.png
│ │ │ ├── go_to_phone_00177.png
│ │ │ ├── go_to_phone_00178.png
│ │ │ ├── go_to_phone_00185.png
│ │ │ ├── go_to_phone_00186.png
│ │ │ ├── go_to_phone_00187.png
│ │ │ ├── go_to_phone_00188.png
│ │ │ ├── go_to_phone_00189.png
│ │ │ ├── go_to_phone_00190.png
│ │ │ ├── go_to_phone_00191.png
│ │ │ ├── go_to_phone_00192.png
│ │ │ ├── go_to_phone_00193.png
│ │ │ ├── go_to_phone_00194.png
│ │ │ ├── go_to_phone_00195.png
│ │ │ ├── go_to_phone_00196.png
│ │ │ ├── go_to_phone_00197.png
│ │ │ ├── go_to_phone_00198.png
│ │ │ ├── go_to_phone_00199.png
│ │ │ ├── go_to_phone_00200.png
│ │ │ ├── go_to_phone_00210.png
│ │ │ ├── go_to_phone_00211.png
│ │ │ ├── go_to_phone_00212.png
│ │ │ ├── go_to_phone_00213.png
│ │ │ ├── go_to_phone_00214.png
│ │ │ ├── go_to_phone_00215.png
│ │ │ ├── go_to_phone_00216.png
│ │ │ ├── go_to_phone_00217.png
│ │ │ ├── go_to_phone_00218.png
│ │ │ ├── go_to_phone_00219.png
│ │ │ ├── go_to_phone_00220.png
│ │ │ ├── go_to_phone_00221.png
│ │ │ ├── go_to_phone_00222.png
│ │ │ ├── go_to_phone_00223.png
│ │ │ ├── go_to_phone_00224.png
│ │ │ ├── ic_full_cancel.png
│ │ │ └── ic_full_sad.png
│ │ ├── drawable-mdpi
│ │ │ ├── card_frame.9.png
│ │ │ ├── card_frame_pressed.9.png
│ │ │ ├── generic_confirmation_00163.png
│ │ │ ├── generic_confirmation_00164.png
│ │ │ ├── generic_confirmation_00165.png
│ │ │ ├── generic_confirmation_00166.png
│ │ │ ├── generic_confirmation_00167.png
│ │ │ ├── generic_confirmation_00168.png
│ │ │ ├── generic_confirmation_00169.png
│ │ │ ├── generic_confirmation_00170.png
│ │ │ ├── generic_confirmation_00171.png
│ │ │ ├── generic_confirmation_00172.png
│ │ │ ├── generic_confirmation_00173.png
│ │ │ ├── generic_confirmation_00174.png
│ │ │ ├── generic_confirmation_00175.png
│ │ │ ├── generic_confirmation_00176.png
│ │ │ ├── generic_confirmation_00177.png
│ │ │ ├── generic_confirmation_00178.png
│ │ │ ├── generic_confirmation_00179.png
│ │ │ ├── generic_confirmation_00180.png
│ │ │ ├── generic_confirmation_00181.png
│ │ │ ├── generic_confirmation_00182.png
│ │ │ ├── generic_confirmation_00183.png
│ │ │ ├── generic_confirmation_00184.png
│ │ │ ├── generic_confirmation_00185.png
│ │ │ ├── generic_confirmation_00186.png
│ │ │ ├── generic_confirmation_00187.png
│ │ │ ├── generic_confirmation_00188.png
│ │ │ ├── generic_confirmation_00189.png
│ │ │ ├── generic_confirmation_00190.png
│ │ │ ├── generic_confirmation_00191.png
│ │ │ ├── generic_confirmation_00192.png
│ │ │ ├── generic_confirmation_00193.png
│ │ │ ├── go_to_phone_00156.png
│ │ │ ├── go_to_phone_00157.png
│ │ │ ├── go_to_phone_00158.png
│ │ │ ├── go_to_phone_00159.png
│ │ │ ├── go_to_phone_00160.png
│ │ │ ├── go_to_phone_00161.png
│ │ │ ├── go_to_phone_00162.png
│ │ │ ├── go_to_phone_00163.png
│ │ │ ├── go_to_phone_00164.png
│ │ │ ├── go_to_phone_00165.png
│ │ │ ├── go_to_phone_00166.png
│ │ │ ├── go_to_phone_00167.png
│ │ │ ├── go_to_phone_00168.png
│ │ │ ├── go_to_phone_00169.png
│ │ │ ├── go_to_phone_00170.png
│ │ │ ├── go_to_phone_00171.png
│ │ │ ├── go_to_phone_00172.png
│ │ │ ├── go_to_phone_00173.png
│ │ │ ├── go_to_phone_00174.png
│ │ │ ├── go_to_phone_00175.png
│ │ │ ├── go_to_phone_00176.png
│ │ │ ├── go_to_phone_00177.png
│ │ │ ├── go_to_phone_00178.png
│ │ │ ├── go_to_phone_00185.png
│ │ │ ├── go_to_phone_00186.png
│ │ │ ├── go_to_phone_00187.png
│ │ │ ├── go_to_phone_00188.png
│ │ │ ├── go_to_phone_00189.png
│ │ │ ├── go_to_phone_00190.png
│ │ │ ├── go_to_phone_00191.png
│ │ │ ├── go_to_phone_00192.png
│ │ │ ├── go_to_phone_00193.png
│ │ │ ├── go_to_phone_00194.png
│ │ │ ├── go_to_phone_00195.png
│ │ │ ├── go_to_phone_00196.png
│ │ │ ├── go_to_phone_00197.png
│ │ │ ├── go_to_phone_00198.png
│ │ │ ├── go_to_phone_00199.png
│ │ │ ├── go_to_phone_00200.png
│ │ │ ├── go_to_phone_00210.png
│ │ │ ├── go_to_phone_00211.png
│ │ │ ├── go_to_phone_00212.png
│ │ │ ├── go_to_phone_00213.png
│ │ │ ├── go_to_phone_00214.png
│ │ │ ├── go_to_phone_00215.png
│ │ │ ├── go_to_phone_00216.png
│ │ │ ├── go_to_phone_00217.png
│ │ │ ├── go_to_phone_00218.png
│ │ │ ├── go_to_phone_00219.png
│ │ │ ├── go_to_phone_00220.png
│ │ │ ├── go_to_phone_00221.png
│ │ │ ├── go_to_phone_00222.png
│ │ │ ├── go_to_phone_00223.png
│ │ │ ├── go_to_phone_00224.png
│ │ │ ├── ic_full_cancel.png
│ │ │ └── ic_full_sad.png
│ │ └── drawable-xhdpi
│ │ ├── card_frame.9.png
│ │ ├── card_frame_pressed.9.png
│ │ ├── generic_confirmation_00163.png
│ │ ├── generic_confirmation_00164.png
│ │ ├── generic_confirmation_00165.png
│ │ ├── generic_confirmation_00166.png
│ │ ├── generic_confirmation_00167.png
│ │ ├── generic_confirmation_00168.png
│ │ ├── generic_confirmation_00169.png
│ │ ├── generic_confirmation_00170.png
│ │ ├── generic_confirmation_00171.png
│ │ ├── generic_confirmation_00172.png
│ │ ├── generic_confirmation_00173.png
│ │ ├── generic_confirmation_00174.png
│ │ ├── generic_confirmation_00175.png
│ │ ├── generic_confirmation_00176.png
│ │ ├── generic_confirmation_00177.png
│ │ ├── generic_confirmation_00178.png
│ │ ├── generic_confirmation_00179.png
│ │ ├── generic_confirmation_00180.png
│ │ ├── generic_confirmation_00181.png
│ │ ├── generic_confirmation_00182.png
│ │ ├── generic_confirmation_00183.png
│ │ ├── generic_confirmation_00184.png
│ │ ├── generic_confirmation_00185.png
│ │ ├── generic_confirmation_00186.png
│ │ ├── generic_confirmation_00187.png
│ │ ├── generic_confirmation_00188.png
│ │ ├── generic_confirmation_00189.png
│ │ ├── generic_confirmation_00190.png
│ │ ├── generic_confirmation_00191.png
│ │ ├── generic_confirmation_00192.png
│ │ ├── generic_confirmation_00193.png
│ │ ├── go_to_phone_00156.png
│ │ ├── go_to_phone_00157.png
│ │ ├── go_to_phone_00158.png
│ │ ├── go_to_phone_00159.png
│ │ ├── go_to_phone_00160.png
│ │ ├── go_to_phone_00161.png
│ │ ├── go_to_phone_00162.png
│ │ ├── go_to_phone_00163.png
│ │ ├── go_to_phone_00164.png
│ │ ├── go_to_phone_00165.png
│ │ ├── go_to_phone_00166.png
│ │ ├── go_to_phone_00167.png
│ │ ├── go_to_phone_00168.png
│ │ ├── go_to_phone_00169.png
│ │ ├── go_to_phone_00170.png
│ │ ├── go_to_phone_00171.png
│ │ ├── go_to_phone_00172.png
│ │ ├── go_to_phone_00173.png
│ │ ├── go_to_phone_00174.png
│ │ ├── go_to_phone_00175.png
│ │ ├── go_to_phone_00176.png
│ │ ├── go_to_phone_00177.png
│ │ ├── go_to_phone_00178.png
│ │ ├── go_to_phone_00185.png
│ │ ├── go_to_phone_00186.png
│ │ ├── go_to_phone_00187.png
│ │ ├── go_to_phone_00188.png
│ │ ├── go_to_phone_00189.png
│ │ ├── go_to_phone_00190.png
│ │ ├── go_to_phone_00191.png
│ │ ├── go_to_phone_00192.png
│ │ ├── go_to_phone_00193.png
│ │ ├── go_to_phone_00194.png
│ │ ├── go_to_phone_00195.png
│ │ ├── go_to_phone_00196.png
│ │ ├── go_to_phone_00197.png
│ │ ├── go_to_phone_00198.png
│ │ ├── go_to_phone_00199.png
│ │ ├── go_to_phone_00200.png
│ │ ├── go_to_phone_00210.png
│ │ ├── go_to_phone_00211.png
│ │ ├── go_to_phone_00212.png
│ │ ├── go_to_phone_00213.png
│ │ ├── go_to_phone_00214.png
│ │ ├── go_to_phone_00215.png
│ │ ├── go_to_phone_00216.png
│ │ ├── go_to_phone_00217.png
│ │ ├── go_to_phone_00218.png
│ │ ├── go_to_phone_00219.png
│ │ ├── go_to_phone_00220.png
│ │ ├── go_to_phone_00221.png
│ │ ├── go_to_phone_00222.png
│ │ ├── go_to_phone_00223.png
│ │ ├── go_to_phone_00224.png
│ │ ├── ic_full_cancel.png
│ │ └── ic_full_sad.png
│ ├── R.txt
│ └── wearable-1.0.0.jar
├── gen
│ └── android
│ └── support
│ └── wearable
│ ├── BuildConfig.java
│ └── R.java
├── libs
│ ├── classes.jar
│ └── wearable-1.0.0-javadoc.jar
├── project.properties
├── res
│ ├── drawable
│ │ ├── card_background.xml
│ │ ├── close_button.xml
│ │ ├── confirmation_animation.xml
│ │ └── go_to_phone_animation.xml
│ ├── drawable-hdpi
│ │ ├── card_frame.9.png
│ │ ├── card_frame_pressed.9.png
│ │ ├── generic_confirmation_00163.png
│ │ ├── generic_confirmation_00164.png
│ │ ├── generic_confirmation_00165.png
│ │ ├── generic_confirmation_00166.png
│ │ ├── generic_confirmation_00167.png
│ │ ├── generic_confirmation_00168.png
│ │ ├── generic_confirmation_00169.png
│ │ ├── generic_confirmation_00170.png
│ │ ├── generic_confirmation_00171.png
│ │ ├── generic_confirmation_00172.png
│ │ ├── generic_confirmation_00173.png
│ │ ├── generic_confirmation_00174.png
│ │ ├── generic_confirmation_00175.png
│ │ ├── generic_confirmation_00176.png
│ │ ├── generic_confirmation_00177.png
│ │ ├── generic_confirmation_00178.png
│ │ ├── generic_confirmation_00179.png
│ │ ├── generic_confirmation_00180.png
│ │ ├── generic_confirmation_00181.png
│ │ ├── generic_confirmation_00182.png
│ │ ├── generic_confirmation_00183.png
│ │ ├── generic_confirmation_00184.png
│ │ ├── generic_confirmation_00185.png
│ │ ├── generic_confirmation_00186.png
│ │ ├── generic_confirmation_00187.png
│ │ ├── generic_confirmation_00188.png
│ │ ├── generic_confirmation_00189.png
│ │ ├── generic_confirmation_00190.png
│ │ ├── generic_confirmation_00191.png
│ │ ├── generic_confirmation_00192.png
│ │ ├── generic_confirmation_00193.png
│ │ ├── go_to_phone_00156.png
│ │ ├── go_to_phone_00157.png
│ │ ├── go_to_phone_00158.png
│ │ ├── go_to_phone_00159.png
│ │ ├── go_to_phone_00160.png
│ │ ├── go_to_phone_00161.png
│ │ ├── go_to_phone_00162.png
│ │ ├── go_to_phone_00163.png
│ │ ├── go_to_phone_00164.png
│ │ ├── go_to_phone_00165.png
│ │ ├── go_to_phone_00166.png
│ │ ├── go_to_phone_00167.png
│ │ ├── go_to_phone_00168.png
│ │ ├── go_to_phone_00169.png
│ │ ├── go_to_phone_00170.png
│ │ ├── go_to_phone_00171.png
│ │ ├── go_to_phone_00172.png
│ │ ├── go_to_phone_00173.png
│ │ ├── go_to_phone_00174.png
│ │ ├── go_to_phone_00175.png
│ │ ├── go_to_phone_00176.png
│ │ ├── go_to_phone_00177.png
│ │ ├── go_to_phone_00178.png
│ │ ├── go_to_phone_00185.png
│ │ ├── go_to_phone_00186.png
│ │ ├── go_to_phone_00187.png
│ │ ├── go_to_phone_00188.png
│ │ ├── go_to_phone_00189.png
│ │ ├── go_to_phone_00190.png
│ │ ├── go_to_phone_00191.png
│ │ ├── go_to_phone_00192.png
│ │ ├── go_to_phone_00193.png
│ │ ├── go_to_phone_00194.png
│ │ ├── go_to_phone_00195.png
│ │ ├── go_to_phone_00196.png
│ │ ├── go_to_phone_00197.png
│ │ ├── go_to_phone_00198.png
│ │ ├── go_to_phone_00199.png
│ │ ├── go_to_phone_00200.png
│ │ ├── go_to_phone_00210.png
│ │ ├── go_to_phone_00211.png
│ │ ├── go_to_phone_00212.png
│ │ ├── go_to_phone_00213.png
│ │ ├── go_to_phone_00214.png
│ │ ├── go_to_phone_00215.png
│ │ ├── go_to_phone_00216.png
│ │ ├── go_to_phone_00217.png
│ │ ├── go_to_phone_00218.png
│ │ ├── go_to_phone_00219.png
│ │ ├── go_to_phone_00220.png
│ │ ├── go_to_phone_00221.png
│ │ ├── go_to_phone_00222.png
│ │ ├── go_to_phone_00223.png
│ │ ├── go_to_phone_00224.png
│ │ ├── ic_full_cancel.png
│ │ └── ic_full_sad.png
│ ├── drawable-ldpi
│ ├── drawable-mdpi
│ │ ├── card_frame.9.png
│ │ ├── card_frame_pressed.9.png
│ │ ├── generic_confirmation_00163.png
│ │ ├── generic_confirmation_00164.png
│ │ ├── generic_confirmation_00165.png
│ │ ├── generic_confirmation_00166.png
│ │ ├── generic_confirmation_00167.png
│ │ ├── generic_confirmation_00168.png
│ │ ├── generic_confirmation_00169.png
│ │ ├── generic_confirmation_00170.png
│ │ ├── generic_confirmation_00171.png
│ │ ├── generic_confirmation_00172.png
│ │ ├── generic_confirmation_00173.png
│ │ ├── generic_confirmation_00174.png
│ │ ├── generic_confirmation_00175.png
│ │ ├── generic_confirmation_00176.png
│ │ ├── generic_confirmation_00177.png
│ │ ├── generic_confirmation_00178.png
│ │ ├── generic_confirmation_00179.png
│ │ ├── generic_confirmation_00180.png
│ │ ├── generic_confirmation_00181.png
│ │ ├── generic_confirmation_00182.png
│ │ ├── generic_confirmation_00183.png
│ │ ├── generic_confirmation_00184.png
│ │ ├── generic_confirmation_00185.png
│ │ ├── generic_confirmation_00186.png
│ │ ├── generic_confirmation_00187.png
│ │ ├── generic_confirmation_00188.png
│ │ ├── generic_confirmation_00189.png
│ │ ├── generic_confirmation_00190.png
│ │ ├── generic_confirmation_00191.png
│ │ ├── generic_confirmation_00192.png
│ │ ├── generic_confirmation_00193.png
│ │ ├── go_to_phone_00156.png
│ │ ├── go_to_phone_00157.png
│ │ ├── go_to_phone_00158.png
│ │ ├── go_to_phone_00159.png
│ │ ├── go_to_phone_00160.png
│ │ ├── go_to_phone_00161.png
│ │ ├── go_to_phone_00162.png
│ │ ├── go_to_phone_00163.png
│ │ ├── go_to_phone_00164.png
│ │ ├── go_to_phone_00165.png
│ │ ├── go_to_phone_00166.png
│ │ ├── go_to_phone_00167.png
│ │ ├── go_to_phone_00168.png
│ │ ├── go_to_phone_00169.png
│ │ ├── go_to_phone_00170.png
│ │ ├── go_to_phone_00171.png
│ │ ├── go_to_phone_00172.png
│ │ ├── go_to_phone_00173.png
│ │ ├── go_to_phone_00174.png
│ │ ├── go_to_phone_00175.png
│ │ ├── go_to_phone_00176.png
│ │ ├── go_to_phone_00177.png
│ │ ├── go_to_phone_00178.png
│ │ ├── go_to_phone_00185.png
│ │ ├── go_to_phone_00186.png
│ │ ├── go_to_phone_00187.png
│ │ ├── go_to_phone_00188.png
│ │ ├── go_to_phone_00189.png
│ │ ├── go_to_phone_00190.png
│ │ ├── go_to_phone_00191.png
│ │ ├── go_to_phone_00192.png
│ │ ├── go_to_phone_00193.png
│ │ ├── go_to_phone_00194.png
│ │ ├── go_to_phone_00195.png
│ │ ├── go_to_phone_00196.png
│ │ ├── go_to_phone_00197.png
│ │ ├── go_to_phone_00198.png
│ │ ├── go_to_phone_00199.png
│ │ ├── go_to_phone_00200.png
│ │ ├── go_to_phone_00210.png
│ │ ├── go_to_phone_00211.png
│ │ ├── go_to_phone_00212.png
│ │ ├── go_to_phone_00213.png
│ │ ├── go_to_phone_00214.png
│ │ ├── go_to_phone_00215.png
│ │ ├── go_to_phone_00216.png
│ │ ├── go_to_phone_00217.png
│ │ ├── go_to_phone_00218.png
│ │ ├── go_to_phone_00219.png
│ │ ├── go_to_phone_00220.png
│ │ ├── go_to_phone_00221.png
│ │ ├── go_to_phone_00222.png
│ │ ├── go_to_phone_00223.png
│ │ ├── go_to_phone_00224.png
│ │ ├── ic_full_cancel.png
│ │ └── ic_full_sad.png
│ ├── drawable-xhdpi
│ │ ├── card_frame.9.png
│ │ ├── card_frame_pressed.9.png
│ │ ├── generic_confirmation_00163.png
│ │ ├── generic_confirmation_00164.png
│ │ ├── generic_confirmation_00165.png
│ │ ├── generic_confirmation_00166.png
│ │ ├── generic_confirmation_00167.png
│ │ ├── generic_confirmation_00168.png
│ │ ├── generic_confirmation_00169.png
│ │ ├── generic_confirmation_00170.png
│ │ ├── generic_confirmation_00171.png
│ │ ├── generic_confirmation_00172.png
│ │ ├── generic_confirmation_00173.png
│ │ ├── generic_confirmation_00174.png
│ │ ├── generic_confirmation_00175.png
│ │ ├── generic_confirmation_00176.png
│ │ ├── generic_confirmation_00177.png
│ │ ├── generic_confirmation_00178.png
│ │ ├── generic_confirmation_00179.png
│ │ ├── generic_confirmation_00180.png
│ │ ├── generic_confirmation_00181.png
│ │ ├── generic_confirmation_00182.png
│ │ ├── generic_confirmation_00183.png
│ │ ├── generic_confirmation_00184.png
│ │ ├── generic_confirmation_00185.png
│ │ ├── generic_confirmation_00186.png
│ │ ├── generic_confirmation_00187.png
│ │ ├── generic_confirmation_00188.png
│ │ ├── generic_confirmation_00189.png
│ │ ├── generic_confirmation_00190.png
│ │ ├── generic_confirmation_00191.png
│ │ ├── generic_confirmation_00192.png
│ │ ├── generic_confirmation_00193.png
│ │ ├── go_to_phone_00156.png
│ │ ├── go_to_phone_00157.png
│ │ ├── go_to_phone_00158.png
│ │ ├── go_to_phone_00159.png
│ │ ├── go_to_phone_00160.png
│ │ ├── go_to_phone_00161.png
│ │ ├── go_to_phone_00162.png
│ │ ├── go_to_phone_00163.png
│ │ ├── go_to_phone_00164.png
│ │ ├── go_to_phone_00165.png
│ │ ├── go_to_phone_00166.png
│ │ ├── go_to_phone_00167.png
│ │ ├── go_to_phone_00168.png
│ │ ├── go_to_phone_00169.png
│ │ ├── go_to_phone_00170.png
│ │ ├── go_to_phone_00171.png
│ │ ├── go_to_phone_00172.png
│ │ ├── go_to_phone_00173.png
│ │ ├── go_to_phone_00174.png
│ │ ├── go_to_phone_00175.png
│ │ ├── go_to_phone_00176.png
│ │ ├── go_to_phone_00177.png
│ │ ├── go_to_phone_00178.png
│ │ ├── go_to_phone_00185.png
│ │ ├── go_to_phone_00186.png
│ │ ├── go_to_phone_00187.png
│ │ ├── go_to_phone_00188.png
│ │ ├── go_to_phone_00189.png
│ │ ├── go_to_phone_00190.png
│ │ ├── go_to_phone_00191.png
│ │ ├── go_to_phone_00192.png
│ │ ├── go_to_phone_00193.png
│ │ ├── go_to_phone_00194.png
│ │ ├── go_to_phone_00195.png
│ │ ├── go_to_phone_00196.png
│ │ ├── go_to_phone_00197.png
│ │ ├── go_to_phone_00198.png
│ │ ├── go_to_phone_00199.png
│ │ ├── go_to_phone_00200.png
│ │ ├── go_to_phone_00210.png
│ │ ├── go_to_phone_00211.png
│ │ ├── go_to_phone_00212.png
│ │ ├── go_to_phone_00213.png
│ │ ├── go_to_phone_00214.png
│ │ ├── go_to_phone_00215.png
│ │ ├── go_to_phone_00216.png
│ │ ├── go_to_phone_00217.png
│ │ ├── go_to_phone_00218.png
│ │ ├── go_to_phone_00219.png
│ │ ├── go_to_phone_00220.png
│ │ ├── go_to_phone_00221.png
│ │ ├── go_to_phone_00222.png
│ │ ├── go_to_phone_00223.png
│ │ ├── go_to_phone_00224.png
│ │ ├── ic_full_cancel.png
│ │ └── ic_full_sad.png
│ ├── layout
│ │ ├── confirmation_activity_layout.xml
│ │ ├── dismiss_overlay.xml
│ │ └── watch_card_content.xml
│ └── values
│ └── values.xml
├── R.txt
└── src
66 directories, 622 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论