├── settings.gradle ├── app ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── apis │ │ │ ├── app │ │ │ ├── SearchInvoke.java │ │ │ ├── IsolatedService2.java │ │ │ └── DoNothing.java │ │ │ ├── content │ │ │ └── ProcessTextLauncher.java │ │ │ ├── view │ │ │ ├── Controls2.java │ │ │ ├── Controls3.java │ │ │ ├── Controls4.java │ │ │ ├── Controls5.java │ │ │ ├── Controls6.java │ │ │ ├── Controls7.java │ │ │ ├── Controls8.java │ │ │ ├── Controls9.java │ │ │ ├── Tabs4.java │ │ │ ├── Focus2.java │ │ │ ├── ScrollBar1.java │ │ │ ├── ScrollBar2.java │ │ │ ├── TableLayout1.java │ │ │ ├── TableLayout10.java │ │ │ ├── TableLayout2.java │ │ │ ├── TableLayout3.java │ │ │ ├── TableLayout4.java │ │ │ ├── TableLayout5.java │ │ │ ├── TableLayout6.java │ │ │ ├── Focus5.java │ │ │ ├── ImageButton1.java │ │ │ ├── LayoutAnimation7.java │ │ │ ├── GridLayout2.java │ │ │ ├── Baseline1.java │ │ │ ├── Baseline6.java │ │ │ ├── SystemUIModesOverlay.java │ │ │ ├── Baseline2.java │ │ │ ├── Baseline4.java │ │ │ ├── Baseline7.java │ │ │ ├── TableLayout12.java │ │ │ ├── TableLayout11.java │ │ │ ├── GridLayout1.java │ │ │ ├── ImageView1.java │ │ │ └── RelativeLayout1.java │ │ │ ├── text │ │ │ └── Marquee.java │ │ │ ├── os │ │ │ └── HeadlessSmsSendService.java │ │ │ ├── preference │ │ │ └── PreferenceDependencies.java │ │ │ └── graphics │ │ │ └── GradientDrawable1.java │ │ ├── resources │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── apis │ │ │ ├── animation │ │ │ └── _index.html │ │ │ ├── text │ │ │ └── _index.html │ │ │ └── _package.html │ │ ├── res │ │ ├── raw │ │ │ ├── robot.png │ │ │ ├── androids.pkm │ │ │ ├── test_cbr.mp3 │ │ │ ├── android_logo.png │ │ │ ├── skycubemap0.jpg │ │ │ ├── skycubemap1.jpg │ │ │ ├── skycubemap2.jpg │ │ │ ├── skycubemap3.jpg │ │ │ ├── skycubemap4.jpg │ │ │ ├── skycubemap5.jpg │ │ │ ├── motogp_stats.html │ │ │ ├── sound_screen_on.ogg │ │ │ ├── videoviewdemo.mp4 │ │ │ ├── sound_screen_off.ogg │ │ │ ├── sound_ringer_normal.ogg │ │ │ ├── sound_ringer_silent.ogg │ │ │ ├── sound_ringer_vibrate.ogg │ │ │ ├── sound_view_clicked.ogg │ │ │ ├── sound_view_hover_enter.ogg │ │ │ ├── sound_window_state_changed.ogg │ │ │ └── sound_view_focused_or_selected.ogg │ │ ├── drawable │ │ │ ├── beach.jpg │ │ │ ├── frog.gif │ │ │ ├── photo1.jpg │ │ │ ├── photo2.jpg │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── photo5.jpg │ │ │ ├── photo6.jpg │ │ │ ├── balloons.jpg │ │ │ ├── logo160dpi.png │ │ │ ├── sample_0.jpg │ │ │ ├── sample_1.jpg │ │ │ ├── sample_2.jpg │ │ │ ├── sample_3.jpg │ │ │ ├── sample_4.jpg │ │ │ ├── sample_5.jpg │ │ │ ├── sample_6.jpg │ │ │ ├── sample_7.jpg │ │ │ ├── animated_gif.gif │ │ │ ├── icon48x48_1.png │ │ │ ├── gallery_photo_1.jpg │ │ │ ├── gallery_photo_2.jpg │ │ │ ├── gallery_photo_3.jpg │ │ │ ├── gallery_photo_4.jpg │ │ │ ├── gallery_photo_5.jpg │ │ │ ├── gallery_photo_6.jpg │ │ │ ├── gallery_photo_7.jpg │ │ │ ├── gallery_photo_8.jpg │ │ │ ├── npatch160dpi.9.png │ │ │ ├── picture_frame.png │ │ │ ├── reslogo160dpi.png │ │ │ ├── sample_thumb_0.jpg │ │ │ ├── sample_thumb_1.jpg │ │ │ ├── sample_thumb_2.jpg │ │ │ ├── sample_thumb_3.jpg │ │ │ ├── sample_thumb_4.jpg │ │ │ ├── sample_thumb_5.jpg │ │ │ ├── sample_thumb_6.jpg │ │ │ ├── sample_thumb_7.jpg │ │ │ ├── stylogo160dpi.png │ │ │ ├── magnifying_glass.png │ │ │ ├── smlnpatch160dpi.9.png │ │ │ ├── box_white.xml │ │ │ ├── round_rect.xml │ │ │ ├── shape_4.xml │ │ │ ├── black_box.xml │ │ │ ├── black_opaque_box.xml │ │ │ ├── gallery_background_1.xml │ │ │ ├── scrollbar_vertical_thumb.xml │ │ │ ├── scrollbar_vertical_track.xml │ │ │ ├── hover_background.xml │ │ │ ├── line.xml │ │ │ ├── box.xml │ │ │ ├── shape_1.xml │ │ │ ├── filled_box.xml │ │ │ ├── hover_background_active.xml │ │ │ ├── hover_background_inactive.xml │ │ │ ├── shape_5.xml │ │ │ ├── shape_2.xml │ │ │ ├── shape_3.xml │ │ │ └── circular_progress.xml │ │ ├── drawable-nodpi │ │ │ ├── ball.jpg │ │ │ ├── mug.jpg │ │ │ ├── woot.jpg │ │ │ ├── block.jpg │ │ │ ├── ducky.jpg │ │ │ ├── pencil.jpg │ │ │ ├── frantic.jpg │ │ │ ├── jellies.jpg │ │ │ ├── scissors.jpg │ │ │ ├── logonodpi120.png │ │ │ ├── logonodpi160.png │ │ │ └── logonodpi240.png │ │ ├── drawable-hdpi │ │ │ ├── button.9.png │ │ │ ├── logo240dpi.png │ │ │ ├── stat_happy.png │ │ │ ├── stat_sad.png │ │ │ ├── btn_check_on.png │ │ │ ├── icon48x48_2.png │ │ │ ├── star_big_on.png │ │ │ ├── stat_neutral.png │ │ │ ├── stat_sample.png │ │ │ ├── app_sample_code.png │ │ │ ├── arrow_up_float.png │ │ │ ├── btn_check_off.png │ │ │ ├── npatch240dpi.9.png │ │ │ ├── reslogo240dpi.png │ │ │ ├── stylogo240dpi.png │ │ │ ├── alert_dialog_icon.png │ │ │ ├── arrow_down_float.png │ │ │ ├── btn_circle_normal.png │ │ │ ├── ic_popup_reminder.png │ │ │ ├── progress_particle.png │ │ │ ├── scrollbar_state2.png │ │ │ ├── smlnpatch240dpi.9.png │ │ │ ├── apidemo_androidlogo.png │ │ │ ├── btn_default_normal.9.png │ │ │ ├── ic_contact_picture.png │ │ │ ├── ic_launcher_settings.png │ │ │ └── progress_circular_background.png │ │ ├── drawable-ldpi │ │ │ ├── logo120dpi.png │ │ │ ├── npatch120dpi.9.png │ │ │ ├── reslogo120dpi.png │ │ │ ├── stylogo120dpi.png │ │ │ └── smlnpatch120dpi.9.png │ │ ├── drawable-mdpi │ │ │ ├── button.9.png │ │ │ ├── stat_happy.png │ │ │ ├── stat_sad.png │ │ │ ├── btn_check_on.png │ │ │ ├── icon48x48_2.png │ │ │ ├── star_big_on.png │ │ │ ├── stat_neutral.png │ │ │ ├── stat_sample.png │ │ │ ├── app_sample_code.png │ │ │ ├── arrow_up_float.png │ │ │ ├── btn_check_off.png │ │ │ ├── alert_dialog_icon.png │ │ │ ├── arrow_down_float.png │ │ │ ├── btn_circle_normal.png │ │ │ ├── ic_popup_reminder.png │ │ │ ├── progress_particle.png │ │ │ ├── scrollbar_state2.png │ │ │ ├── apidemo_androidlogo.png │ │ │ ├── btn_default_normal.9.png │ │ │ ├── ic_contact_picture.png │ │ │ ├── ic_launcher_settings.png │ │ │ ├── ic_settings_display.png │ │ │ ├── ic_settings_applications.png │ │ │ └── progress_circular_background.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher_settings.png │ │ ├── menu │ │ │ ├── camera_menu.xml │ │ │ ├── display_options_actions.xml │ │ │ ├── print_custom_content.xml │ │ │ ├── title_only.xml │ │ │ ├── list_select_menu.xml │ │ │ ├── searchview_in_menu.xml │ │ │ ├── presentation_with_media_router_menu.xml │ │ │ └── title_icon.xml │ │ ├── layout │ │ │ ├── videoview.xml │ │ │ ├── mediaplayer_2.xml │ │ │ ├── action_bar_display_options_custom.xml │ │ │ ├── process_text_send.xml │ │ │ ├── search_view.xml │ │ │ ├── action_bar_tab_content.xml │ │ │ ├── bouncing_balls.xml │ │ │ ├── print_html_from_screen.xml │ │ │ ├── game_controller_input_heading.xml │ │ │ ├── layout_animation_3.xml │ │ │ ├── appwidget_provider.xml │ │ │ ├── list_item_checkbox.xml │ │ │ ├── list_position.xml │ │ │ ├── print_bitmap.xml │ │ │ ├── foreground_dispatch.xml │ │ │ ├── process_text_main.xml │ │ │ ├── presentation_with_media_router_content.xml │ │ │ ├── wallpaper_2.xml │ │ │ ├── mediaplayer_1.xml │ │ │ ├── density_styled_image_views.xml │ │ │ ├── print_html_off_screen.xml │ │ │ ├── progressbar_4.xml │ │ │ ├── external_storage.xml │ │ │ ├── preference_widget_mypreference.xml │ │ │ ├── text_to_speech.xml │ │ │ ├── grid_1.xml │ │ │ ├── animation_cloning.xml │ │ │ ├── animation_loading.xml │ │ │ ├── animation_multi_property.xml │ │ │ ├── grid_2.xml │ │ │ ├── searchview_actionbar.xml │ │ │ ├── animation_custom_evaluator.xml │ │ │ ├── popup_menu_1.xml │ │ │ ├── horizontal_scroll_view1.xml │ │ │ └── layout_animation_6.xml │ │ ├── values │ │ │ ├── ids.xml │ │ │ └── integers.xml │ │ ├── transition │ │ │ ├── explode.xml │ │ │ ├── changebounds.xml │ │ │ ├── activity_transition_mgr.xml │ │ │ ├── move_image.xml │ │ │ ├── changebounds_fadein_together.xml │ │ │ ├── explode_move_together.xml │ │ │ └── changebounds_fadeout_sequential.xml │ │ ├── values-hdpi │ │ │ └── strings.xml │ │ ├── values-ldpi │ │ │ └── strings.xml │ │ ├── anim │ │ │ ├── cycle_7.xml │ │ │ ├── hyperspace_in.xml │ │ │ ├── shake.xml │ │ │ ├── layout_animation_row_left_slide.xml │ │ │ ├── layout_animation_table.xml │ │ │ ├── layout_random_fade.xml │ │ │ ├── layout_grid_fade.xml │ │ │ ├── layout_bottom_to_top_slide.xml │ │ │ ├── layout_animation_row_right_slide.xml │ │ │ ├── push_left_in.xml │ │ │ ├── push_left_out.xml │ │ │ ├── push_up_in.xml │ │ │ ├── push_up_out.xml │ │ │ ├── layout_wave_scale.xml │ │ │ ├── fade.xml │ │ │ ├── hold.xml │ │ │ ├── slide_left.xml │ │ │ ├── layout_grid_inverse_fade.xml │ │ │ ├── slide_right.xml │ │ │ ├── color_animator.xml │ │ │ ├── slide_top_to_bottom.xml │ │ │ ├── animator.xml │ │ │ └── object_animator.xml │ │ ├── values-mdpi │ │ │ └── strings.xml │ │ ├── values-xhdpi │ │ │ └── strings.xml │ │ ├── values-v11 │ │ │ └── bools.xml │ │ ├── values-v16 │ │ │ └── bools.xml │ │ ├── values-v13 │ │ │ └── bools.xml │ │ ├── values-v17 │ │ │ └── bools.xml │ │ ├── values-v18 │ │ │ └── bools.xml │ │ ├── values-v14 │ │ │ ├── bools.xml │ │ │ └── styles.xml │ │ ├── values-land │ │ │ └── integers.xml │ │ ├── values-v19 │ │ │ └── bools.xml │ │ ├── values-v20 │ │ │ └── bools.xml │ │ ├── values-xlarge │ │ │ └── layout.xml │ │ ├── values-sw600dp │ │ │ └── layout.xml │ │ └── xml │ │ │ ├── taskbackconfig.xml │ │ │ └── filter_nfc.xml │ │ ├── assets │ │ ├── fonts │ │ │ └── samplefont.ttf │ │ └── read_asset.txt │ │ └── aidl │ │ └── com │ │ └── example │ │ └── android │ │ └── apis │ │ └── app │ │ └── IRemoteServiceCallback.aidl ├── .gitignore └── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── pic ├── Screenshot_2016-12-17-14-02-32-682_com.example.an.png ├── Screenshot_2016-12-17-14-10-49-075_com.example.an.png ├── Screenshot_2016-12-17-14-19-57-433_com.example.an.png ├── Screenshot_2016-12-17-14-21-16-764_com.example.an.png ├── Screenshot_2016-12-17-14-25-20-505_com.example.an.png ├── Screenshot_2016-12-17-14-29-50-183_com.example.an.png ├── Screenshot_2016-12-17-14-30-59-243_com.example.an.png ├── Screenshot_2016-12-17-14-32-20-875_com.example.an.png ├── Screenshot_2016-12-17-14-35-29-320_com.example.an.png ├── Screenshot_2016-12-17-14-36-26-413_com.example.an.png ├── Screenshot_2016-12-17-14-36-45-074_com.example.an.png └── Screenshot_2016-12-17-14-36-49-383_com.example.an.png ├── android_api_demos.properties └── project.properties /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/app/SearchInvoke.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/resources/com/example/android/apis/animation/_index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/raw/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/robot.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/beach.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/frog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/frog.gif -------------------------------------------------------------------------------- /app/src/main/res/raw/androids.pkm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/androids.pkm -------------------------------------------------------------------------------- /app/src/main/res/raw/test_cbr.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/test_cbr.mp3 -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/drawable/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/photo1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/photo2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/photo3.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/photo4.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/photo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/photo5.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/photo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/photo6.jpg -------------------------------------------------------------------------------- /app/src/main/res/raw/android_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/android_logo.png -------------------------------------------------------------------------------- /app/src/main/res/raw/skycubemap0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/skycubemap0.jpg -------------------------------------------------------------------------------- /app/src/main/res/raw/skycubemap1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/skycubemap1.jpg -------------------------------------------------------------------------------- /app/src/main/res/raw/skycubemap2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/skycubemap2.jpg -------------------------------------------------------------------------------- /app/src/main/res/raw/skycubemap3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/skycubemap3.jpg -------------------------------------------------------------------------------- /app/src/main/res/raw/skycubemap4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/skycubemap4.jpg -------------------------------------------------------------------------------- /app/src/main/res/raw/skycubemap5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/skycubemap5.jpg -------------------------------------------------------------------------------- /app/src/main/assets/fonts/samplefont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/assets/fonts/samplefont.ttf -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/ball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/ball.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/mug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/mug.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/woot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/woot.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/balloons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/balloons.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo160dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/logo160dpi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_0.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_3.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_4.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_5.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_6.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_7.jpg -------------------------------------------------------------------------------- /app/src/main/res/raw/motogp_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/motogp_stats.html -------------------------------------------------------------------------------- /app/src/main/res/raw/sound_screen_on.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/sound_screen_on.ogg -------------------------------------------------------------------------------- /app/src/main/res/raw/videoviewdemo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/videoviewdemo.mp4 -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/block.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/ducky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/ducky.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pencil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/pencil.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/animated_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/animated_gif.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon48x48_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/icon48x48_1.png -------------------------------------------------------------------------------- /app/src/main/res/raw/sound_screen_off.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/sound_screen_off.ogg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/button.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/logo240dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/logo240dpi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/stat_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/stat_happy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/stat_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/stat_sad.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/logo120dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-ldpi/logo120dpi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/button.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/stat_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/stat_happy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/stat_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/stat_sad.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/frantic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/frantic.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/jellies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/jellies.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/scissors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/scissors.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/gallery_photo_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/gallery_photo_1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/gallery_photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/gallery_photo_2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/gallery_photo_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/gallery_photo_3.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/gallery_photo_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/gallery_photo_4.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/gallery_photo_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/gallery_photo_5.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/gallery_photo_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/gallery_photo_6.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/gallery_photo_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/gallery_photo_7.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/gallery_photo_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/gallery_photo_8.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/npatch160dpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/npatch160dpi.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/picture_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/picture_frame.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/reslogo160dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/reslogo160dpi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_thumb_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_thumb_0.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_thumb_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_thumb_1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_thumb_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_thumb_2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_thumb_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_thumb_3.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_thumb_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_thumb_4.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_thumb_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_thumb_5.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_thumb_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_thumb_6.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sample_thumb_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/sample_thumb_7.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/stylogo160dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/stylogo160dpi.png -------------------------------------------------------------------------------- /app/src/main/res/raw/sound_ringer_normal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/sound_ringer_normal.ogg -------------------------------------------------------------------------------- /app/src/main/res/raw/sound_ringer_silent.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/sound_ringer_silent.ogg -------------------------------------------------------------------------------- /app/src/main/res/raw/sound_ringer_vibrate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/sound_ringer_vibrate.ogg -------------------------------------------------------------------------------- /app/src/main/res/raw/sound_view_clicked.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/sound_view_clicked.ogg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_check_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/btn_check_on.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/icon48x48_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/icon48x48_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/star_big_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/star_big_on.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/stat_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/stat_neutral.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/stat_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/stat_sample.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_check_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/btn_check_on.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/icon48x48_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/icon48x48_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/star_big_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/star_big_on.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/stat_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/stat_neutral.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/stat_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/stat_sample.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/magnifying_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/magnifying_glass.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/smlnpatch160dpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable/smlnpatch160dpi.9.png -------------------------------------------------------------------------------- /app/src/main/res/raw/sound_view_hover_enter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/sound_view_hover_enter.ogg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/app_sample_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/app_sample_code.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/arrow_up_float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/arrow_up_float.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_check_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/btn_check_off.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/npatch240dpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/npatch240dpi.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/reslogo240dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/reslogo240dpi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/stylogo240dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/stylogo240dpi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/npatch120dpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-ldpi/npatch120dpi.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/reslogo120dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-ldpi/reslogo120dpi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/stylogo120dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-ldpi/stylogo120dpi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/app_sample_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/app_sample_code.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/arrow_up_float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/arrow_up_float.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_check_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/btn_check_off.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/logonodpi120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/logonodpi120.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/logonodpi160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/logonodpi160.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/logonodpi240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-nodpi/logonodpi240.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/alert_dialog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/alert_dialog_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/arrow_down_float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/arrow_down_float.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_circle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/btn_circle_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_popup_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/ic_popup_reminder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/progress_particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/progress_particle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/scrollbar_state2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/scrollbar_state2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/smlnpatch240dpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/smlnpatch240dpi.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/smlnpatch120dpi.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-ldpi/smlnpatch120dpi.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/alert_dialog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/alert_dialog_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/arrow_down_float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/arrow_down_float.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_circle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/btn_circle_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_popup_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/ic_popup_reminder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/progress_particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/progress_particle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/scrollbar_state2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/scrollbar_state2.png -------------------------------------------------------------------------------- /app/src/main/res/raw/sound_window_state_changed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/sound_window_state_changed.ogg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/apidemo_androidlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/apidemo_androidlogo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_default_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/btn_default_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/ic_contact_picture.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/ic_launcher_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/apidemo_androidlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/apidemo_androidlogo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_default_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/btn_default_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/ic_contact_picture.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/ic_launcher_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/ic_settings_display.png -------------------------------------------------------------------------------- /app/src/main/res/raw/sound_view_focused_or_selected.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/raw/sound_view_focused_or_selected.ogg -------------------------------------------------------------------------------- /app/src/main/assets/read_asset.txt: -------------------------------------------------------------------------------- 1 | 这个文本存储在一个原始资产。 2 | 3 | 被读取并放入的TextView这里。 4 | This text is stored in a raw Asset. 5 | 6 | It was read and placed into the TextView here. 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher_settings.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-02-32-682_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-02-32-682_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-10-49-075_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-10-49-075_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-19-57-433_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-19-57-433_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-21-16-764_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-21-16-764_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-25-20-505_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-25-20-505_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-29-50-183_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-29-50-183_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-30-59-243_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-30-59-243_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-32-20-875_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-32-20-875_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-35-29-320_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-35-29-320_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-36-26-413_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-36-26-413_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-36-45-074_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-36-45-074_com.example.an.png -------------------------------------------------------------------------------- /pic/Screenshot_2016-12-17-14-36-49-383_com.example.an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/pic/Screenshot_2016-12-17-14-36-49-383_com.example.an.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/ic_settings_applications.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/progress_circular_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-hdpi/progress_circular_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/progress_circular_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiubiteme/android_api_demos/HEAD/app/src/main/res/drawable-mdpi/progress_circular_background.png -------------------------------------------------------------------------------- /android_api_demos.properties: -------------------------------------------------------------------------------- 1 | path.variable.maven_repository=C\:\\Users\\18071\\.m2\\repository 2 | jdk.home.android_api_23_platform=D\:/software/Androidsdk 3 | jdk.home.1.8=C\:/software/AndroidStudio/jre 4 | javac2.instrumentation.includeJavaRuntime=false -------------------------------------------------------------------------------- /app/src/main/res/menu/camera_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Dec 04 16:49:50 CST 2016 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.14.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/resources/com/example/android/apis/text/_index.html: -------------------------------------------------------------------------------- 1 |
2 |
Linkify
3 |
Demonstrates the Linkify 5 | class, which converts URLs in a block of text into hyperlinks.
6 |
7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/videoview.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/layout/mediaplayer_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### Android template 3 | # Built application files 4 | *.apk 5 | *.ap_ 6 | 7 | # Files for the ART/Dalvik VM 8 | *.dex 9 | 10 | # Java class files 11 | *.class 12 | 13 | # Generated files 14 | bin/ 15 | gen/ 16 | out/ 17 | 18 | # Gradle files 19 | .gradle/ 20 | build/ 21 | 22 | # Local configuration file (sdk path, etc) 23 | local.properties 24 | 25 | # Proguard folder generated by Eclipse 26 | proguard/ 27 | 28 | # Log Files 29 | *.log 30 | 31 | # Android Studio Navigation editor temp files 32 | .navigation/ 33 | 34 | # Android Studio captures folder 35 | captures/ 36 | 37 | # Intellij 38 | *.iml 39 | .idea/workspace.xml 40 | 41 | # Keystore files 42 | *.jks 43 | 44 | -------------------------------------------------------------------------------- /app/src/main/resources/com/example/android/apis/_package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

14 | Examples of how to use the android platform APIs. See: 15 | 16 |

    17 |
  1. sdk.app for examples 18 | of using the android.app APIs. 19 |
  2. sdk.view for examples 20 | of using the android.view APIs. 21 |
22 |

23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/content/ProcessTextLauncher.java: -------------------------------------------------------------------------------- 1 | package com.example.android.apis.content; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.view.Menu; 6 | 7 | //Need the following import to get access to the app resources, since this 8 | //class is in a sub-package. 9 | import com.example.android.apis.R; 10 | 11 | public class ProcessTextLauncher extends Activity { 12 | 13 | @Override 14 | protected void onCreate(Bundle savedInstanceState) { 15 | super.onCreate(savedInstanceState); 16 | setContentView(R.layout.process_text_send); 17 | } 18 | 19 | @Override 20 | public boolean onCreateOptionsMenu(Menu menu) { 21 | return false; 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/view/Controls2.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2007 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.example.android.apis.view; 18 | 19 | public class Controls2 extends Controls1 {} 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/view/Controls3.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2007 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.example.android.apis.view; 18 | 19 | public class Controls3 extends Controls1 {} 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/view/Controls4.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2007 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.example.android.apis.view; 18 | 19 | public class Controls4 extends Controls1 {} 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/view/Controls5.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2011 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.example.android.apis.view; 18 | 19 | public class Controls5 extends Controls1 {} 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/view/Controls6.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2011 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.example.android.apis.view; 18 | 19 | public class Controls6 extends Controls1 {} 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/view/Controls7.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.example.android.apis.view; 18 | 19 | public class Controls7 extends Controls1 {} 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/view/Controls8.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.example.android.apis.view; 18 | 19 | public class Controls8 extends Controls1 {} 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/android/apis/view/Controls9.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.example.android.apis.view; 18 | 19 | public class Controls9 extends Controls1 {} 20 | -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/transition/explode.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | android { 3 | compileSdkVersion 23 4 | buildToolsVersion "23.0.3" 5 | 6 | defaultConfig { 7 | applicationId "com.example.android.apis" 8 | minSdkVersion 16 9 | targetSdkVersion 23 10 | testApplicationId "com.example.android.apis.tests" 11 | testInstrumentationRunner "android.test.InstrumentationTestRunner" 12 | } 13 | 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile 'com.android.support:support-v4:23.4.0' 24 | compile 'com.android.support:appcompat-v7:23.4.0' 25 | // 日志打印工具类 26 | compile 'com.github.orhanobut:logger:1.12' 27 | 28 | } -------------------------------------------------------------------------------- /app/src/main/res/transition/changebounds.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values-hdpi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | Density: High 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/values-ldpi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | Density: Low 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/anim/cycle_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values-mdpi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | Density: Medium 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/values-xhdpi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | Density: Extra High 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/transition/activity_transition_mgr.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values-v11/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | true 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/values-v16/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | true 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/box_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/values-v13/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | true 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/values-v17/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | true 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/values-v18/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | true 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/layout/action_bar_display_options_custom.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 |