├── .gitignore ├── README.md ├── android ├── .gitignore ├── Alpha_For_Views_Sample │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ ├── values-sw720dp-land │ │ │ └── dimens.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── samples │ │ └── alpha │ │ └── MainActivity.java ├── AndroidGeofencesSample │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── samples │ │ │ │ └── androidgeofencessample │ │ │ │ ├── App.java │ │ │ │ ├── GeofenceTransitionsIntentService.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── db │ │ │ │ ├── GeofenceContract.java │ │ │ │ ├── GeofenceDbHelper.java │ │ │ │ └── GeofenceStorage.java │ │ │ └── res │ │ │ ├── drawable-hdpi-v11 │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-hdpi-v9 │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-hdpi │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-mdpi-v11 │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-mdpi-v9 │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-xhdpi-v11 │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-xhdpi-v9 │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-xxhdpi-v11 │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-xxhdpi-v9 │ │ │ └── ic_stat_notification.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_stat_notification.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── screenshot.png │ └── settings.gradle ├── Android_GPS_Using │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── HelloAndroidGpsActivity.java ├── ApplicationCacheDirSize │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── applicationcachedirsize │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Clear_User_Data_Sample │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── cleaner │ │ ├── ClearUserDataSampleActivity.java │ │ └── MyApplication.java ├── Close_All_Activities_Prj │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── first.xml │ │ │ ├── second.xml │ │ │ └── third.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ ├── AppBaseActivity.java │ │ ├── FirstActivity.java │ │ ├── SecondActivity.java │ │ └── ThirdActivity.java ├── Custom_FastScroll_Style_for_scrollbars_Android │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── thumb.png │ │ │ ├── thumb_fastscroll.png │ │ │ ├── thumb_fastscroll_selected.png │ │ │ └── track_fastscroll.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable │ │ │ └── fastscroll_drawable.xml │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── custonui │ │ └── fastscroll │ │ └── MainActivity.java ├── Custom_Font_In_Android │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── assets │ │ └── AeroviasBrasilNF.ttf │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── customfont │ │ └── CustomFontInAndroidActivity.java ├── Custom_Group_Indicator_For_ExpandableListView │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── group_indicator.9.png │ │ │ ├── group_indicator_expanded.9.png │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable │ │ │ └── group_indicator_selector.xml │ │ ├── layout │ │ │ ├── list_item.xml │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── groupindicator │ │ ├── CustomGroupIndicatorForExpandableListViewActivity.java │ │ ├── SampleExpandableListAdapter.java │ │ └── ViewHolder.java ├── Custom_Indeterminate_Progressbar │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ ├── image_for_rotation.png │ │ │ └── my_progress_indeterminate.xml │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── Custom_indeterminate_progressbarActivity.java ├── Custom_ScrollBar_Android │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── thumb.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── custonui │ │ └── CustomScrollBarAndroidActivity.java ├── Custom_Style_For_CheckBox_And_RadioButton │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ ├── checkbox_selector.xml │ │ │ ├── radio.png │ │ │ ├── radio_down.png │ │ │ ├── radiobutton_selector.xml │ │ │ ├── star.png │ │ │ └── star_down.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── CustomStyleForCheckBoxAndRadioButtonActivity.java ├── DaggerUsage │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── daggerusage │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hrupin │ │ │ │ │ └── daggerusage │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MyApplication.java │ │ │ │ │ ├── MyComponent.java │ │ │ │ │ ├── MySharedPreferences.java │ │ │ │ │ └── SharedPreferencesModule.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hrupin │ │ │ └── daggerusage │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── DensityChecker │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-hdpi │ │ │ └── strings.xml │ │ ├── values-ldpi │ │ │ └── strings.xml │ │ ├── values-mdpi │ │ │ └── strings.xml │ │ ├── values-xhdpi │ │ │ └── strings.xml │ │ ├── values-xxhdpi │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── densitychecker │ │ └── MainActivity.java ├── DrawableSizeCalculator │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── drawablesizecalculator │ │ └── MainActivity.java ├── DynamicOptionsMenuSample │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── sample │ │ │ │ └── dynamicoptionsmenusample │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_action_delete.png │ │ │ └── ic_action_edit.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_action_delete.png │ │ │ └── ic_action_edit.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_action_delete.png │ │ │ └── ic_action_edit.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_action_delete.png │ │ │ └── ic_action_edit.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Facebook_Android_Maven_Sample_Parent │ ├── .project │ ├── README.md │ ├── application │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── default.properties │ │ ├── pom.xml │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── hrupin │ │ │ └── fams │ │ │ └── HelloAndroidActivity.java │ ├── facebook │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── default.properties │ │ ├── pom.xml │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── close.png │ │ │ │ └── facebook_icon.png │ │ │ ├── drawable-ldpi │ │ │ │ ├── close.png │ │ │ │ └── facebook_icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── close.png │ │ │ └── drawable │ │ │ │ ├── close.png │ │ │ │ └── facebook_icon.png │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── facebook │ │ │ └── android │ │ │ ├── AsyncFacebookRunner.java │ │ │ ├── DialogError.java │ │ │ ├── Facebook.java │ │ │ ├── FacebookError.java │ │ │ ├── FbDialog.java │ │ │ └── Util.java │ └── pom.xml ├── FakeInterceptorSample │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── mockapi │ │ │ │ └── login.json │ │ │ ├── java │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── fakeinterceptorsample │ │ │ │ ├── App.java │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── User.java │ │ │ │ └── retrofit │ │ │ │ ├── ApiInterface.java │ │ │ │ ├── FakeInterceptor.java │ │ │ │ └── RestClient.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_login.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Filter_ListView_Sample │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── filterlist │ │ ├── FilterListSampleActivity.java │ │ └── Storage.java ├── Filter_ListView_Sample_Custom_Objects │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── item_list.xml │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── filterlist │ │ ├── Country.java │ │ ├── CountryListAdapter.java │ │ ├── FilterListSampleActivity.java │ │ └── Storage.java ├── GoogleMapsV2CustomBalloons │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── LICENSE-2.0.html │ ├── google-play-services_lib │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── README.txt │ │ ├── libs │ │ │ ├── google-play-services.jar │ │ │ └── google-play-services.jar.properties │ │ ├── project.properties │ │ ├── res │ │ │ ├── color │ │ │ │ ├── common_signin_btn_text_dark.xml │ │ │ │ └── common_signin_btn_text_light.xml │ │ │ ├── drawable-hdpi │ │ │ │ ├── common_signin_btn_icon_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_light.9.png │ │ │ │ ├── common_signin_btn_icon_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_normal_dark.9.png │ │ │ │ ├── common_signin_btn_icon_normal_light.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_light.9.png │ │ │ │ ├── common_signin_btn_text_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_normal_dark.9.png │ │ │ │ ├── common_signin_btn_text_normal_light.9.png │ │ │ │ ├── common_signin_btn_text_pressed_dark.9.png │ │ │ │ └── common_signin_btn_text_pressed_light.9.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── common_signin_btn_icon_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_light.9.png │ │ │ │ ├── common_signin_btn_icon_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_normal_dark.9.png │ │ │ │ ├── common_signin_btn_icon_normal_light.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_light.9.png │ │ │ │ ├── common_signin_btn_text_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_normal_dark.9.png │ │ │ │ ├── common_signin_btn_text_normal_light.9.png │ │ │ │ ├── common_signin_btn_text_pressed_dark.9.png │ │ │ │ └── common_signin_btn_text_pressed_light.9.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── common_signin_btn_icon_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_disabled_light.9.png │ │ │ │ ├── common_signin_btn_icon_focus_dark.9.png │ │ │ │ ├── common_signin_btn_icon_focus_light.9.png │ │ │ │ ├── common_signin_btn_icon_normal_dark.9.png │ │ │ │ ├── common_signin_btn_icon_normal_light.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_dark.9.png │ │ │ │ ├── common_signin_btn_icon_pressed_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_disabled_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_disabled_light.9.png │ │ │ │ ├── common_signin_btn_text_focus_dark.9.png │ │ │ │ ├── common_signin_btn_text_focus_light.9.png │ │ │ │ ├── common_signin_btn_text_normal_dark.9.png │ │ │ │ ├── common_signin_btn_text_normal_light.9.png │ │ │ │ ├── common_signin_btn_text_pressed_dark.9.png │ │ │ │ └── common_signin_btn_text_pressed_light.9.png │ │ │ ├── drawable │ │ │ │ ├── common_signin_btn_icon_dark.xml │ │ │ │ ├── common_signin_btn_icon_light.xml │ │ │ │ ├── common_signin_btn_text_dark.xml │ │ │ │ └── common_signin_btn_text_light.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── maps_attrs.xml │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── android │ │ │ └── UnusedStub.java │ ├── ic_launcher-web.png │ ├── libs │ │ └── android-support-v4.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── balloon_bg.9.png │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── balloon.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── googlemapsv2customballoons │ │ ├── BalloonAdapter.java │ │ └── MainActivity.java ├── Google_Maps_Balloon_Trics │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── balloon_overlay_bg_selector.xml │ │ │ ├── balloon_overlay_close.png │ │ │ ├── balloon_overlay_focused.9.png │ │ │ ├── balloon_overlay_unfocused.9.png │ │ │ ├── default_marker.png │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── balloon_overlay.xml │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── lazymarkers │ │ ├── BalloonItemizedOverlay.java │ │ ├── BalloonOverlayView.java │ │ ├── MapDataItem.java │ │ ├── MapOverlayItemMarkerAsyncTask.java │ │ ├── MyItemizedOverlay.java │ │ ├── StartActivity.java │ │ └── Utils.java ├── Google_Maps_DisplayRoute │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── default_marker.png │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ ├── com │ │ └── hrupin │ │ │ └── maproute │ │ │ ├── Loger.java │ │ │ ├── ShowRouteAsyncTask.java │ │ │ ├── StartActivity.java │ │ │ └── route │ │ │ ├── Point.java │ │ │ ├── Road.java │ │ │ ├── RoadProvider.java │ │ │ └── RouteOverlay.java │ │ └── java │ │ └── properties │ │ └── kml.xml ├── Google_Maps_Marker_Deleting │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── default_marker.png │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── mappinremoving │ │ ├── MapDataItem.java │ │ ├── MyItemizedOverlay.java │ │ └── StartActivity.java ├── Google_Maps_Marker_Lazy_Loading │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── default_marker.png │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── lazymarkers │ │ ├── MapDataItem.java │ │ ├── MapOverlayItemMarkerAsyncTask.java │ │ ├── MyItemizedOverlay.java │ │ └── StartActivity.java ├── ImageButtonSrcCenterSample │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── libs │ │ └── android-support-v4.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── src_image.9.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── imagebuttonsrccentersample │ │ └── MainActivity.java ├── LoaderManagerSample │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── libs │ │ └── android-support-v4.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── fragment_my.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── samples │ │ └── loadermanagersample │ │ ├── MainActivity.java │ │ ├── MyFragment.java │ │ ├── MyLoader.java │ │ └── MyPagerAdapter.java ├── Mp3_Player │ ├── .gitignore │ ├── Mp3_Player.iml │ ├── README.md │ ├── app │ │ ├── app.iml │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── mp3player │ │ │ │ └── Mp3player.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ │ ├── layout │ │ │ └── main.xml │ │ │ ├── raw │ │ │ └── testsong_20_sec.mp3 │ │ │ └── values │ │ │ └── strings.xml │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Open_Android_App_Via_Bash_Script │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── pom.xml │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── scripts │ │ └── run_app.sh │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── hrupin │ │ └── simpleapp │ │ └── HelloAndroidActivity.java ├── Popup_Animation │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── anim │ │ │ ├── popup_hide.xml │ │ │ └── popup_show.xml │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── SampleActivity.java ├── SMS_Detector │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── sms │ │ ├── SMSDetectorActivity.java │ │ └── SmsBroadcastReceiver.java ├── Send_Email_With_Attached_Textfile │ ├── .gitignore │ ├── Send_Email_With_Attached_Textfile.iml │ ├── app │ │ ├── .gitignore │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── samples │ │ │ │ └── sendemail │ │ │ │ └── ApplicationTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── samples │ │ │ │ └── sendemail │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ └── values │ │ │ └── strings.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Send_Intent_By_Hyperlink_Click │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── main.xml │ │ │ └── second.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── webviewintent │ │ ├── MyWebViewClient.java │ │ ├── SecondActivity.java │ │ └── SendIntentByHyperlinkClickActivity.java ├── ShakeDetectSampleApplication │ ├── .gitignore │ ├── ShakeDetectSampleApplication.iml │ ├── app │ │ ├── .gitignore │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── sample │ │ │ │ └── shakedetect │ │ │ │ └── ApplicationTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── sample │ │ │ │ └── shakedetect │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ └── values │ │ │ └── strings.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Smooth_Scroll_to_position_Listview │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── TestActivity.java ├── Sound_Effects_In_Android │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ ├── raw │ │ │ └── sound_1.mp3 │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ └── sample │ │ └── soundeffects │ │ ├── Effects.java │ │ └── SoundEffectsInAndroidActivity.java ├── SystemAlertWindowSample │ ├── SystemAlertWindowSample.iml │ ├── app │ │ ├── .gitignore │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hrupin │ │ │ │ └── systemalertwindowsample │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hrupin │ │ │ │ │ └── systemalertwindowsample │ │ │ │ │ ├── App.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── OverlayButton.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hrupin │ │ │ └── systemalertwindowsample │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── TabActivity_Sample │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── default.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── first.xml │ │ │ ├── main.xml │ │ │ └── second.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── hrupin │ │ ├── FirstTabActivity.java │ │ ├── SecondTabActivity.java │ │ └── TabActivitySampleActivity.java └── Wifi_Switcher_Example │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml │ └── src │ └── com │ └── hrupin │ └── wifiSample │ └── WifiSwitcherExampleActivity.java ├── bash ├── canon_ip_3600 │ ├── README.md │ └── ip3600.sh ├── cron │ ├── README.md │ ├── certrenew.sh │ ├── mysqlfix.sh │ └── nginxfix.sh └── virtualhost_on_ubuntu │ ├── README.md │ └── vhosts.sh ├── ios └── HexadecimalColorsSample │ ├── HexadecimalColorsSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── HexadecimalColorsSample.xccheckout │ │ └── xcuserdata │ │ │ └── igor.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── igor.xcuserdatad │ │ └── xcschemes │ │ ├── HexadecimalColorsSample.xcscheme │ │ └── xcschememanagement.plist │ ├── HexadecimalColorsSample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Utils.h │ ├── Utils.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m │ └── HexadecimalColorsSampleTests │ ├── HexadecimalColorsSampleTests.m │ └── Info.plist └── php └── githublink ├── githublink.php └── img └── gitHub-download-button.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ###This repo contains sample source code for my blog 2 | [WWW.HRUPIN.COM](http://www.hrupin.com) -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/.classpath -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/.project -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/proguard-project.txt -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/project.properties -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/values-v11/styles.xml -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/values-v14/styles.xml -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/values/dimens.xml -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/values/strings.xml -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/res/values/styles.xml -------------------------------------------------------------------------------- /android/Alpha_For_Views_Sample/src/com/hrupin/samples/alpha/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Alpha_For_Views_Sample/src/com/hrupin/samples/alpha/MainActivity.java -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/.gitignore -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/README.md -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/build.gradle -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-hdpi-v11/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-hdpi-v11/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-hdpi-v9/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-hdpi-v9/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-hdpi/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-hdpi/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-mdpi-v11/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-mdpi-v11/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-mdpi-v9/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-mdpi-v9/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-mdpi/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-mdpi/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-xhdpi-v11/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-xhdpi-v11/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-xhdpi-v9/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-xhdpi-v9/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-xhdpi/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-xhdpi/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-xxhdpi-v9/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-xxhdpi-v9/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/drawable-xxhdpi/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/drawable-xxhdpi/ic_stat_notification.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/build.gradle -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/gradle.properties -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/gradlew -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/gradlew.bat -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/AndroidGeofencesSample/screenshot.png -------------------------------------------------------------------------------- /android/AndroidGeofencesSample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/Android_GPS_Using/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/.classpath -------------------------------------------------------------------------------- /android/Android_GPS_Using/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/.project -------------------------------------------------------------------------------- /android/Android_GPS_Using/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Android_GPS_Using/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/README.md -------------------------------------------------------------------------------- /android/Android_GPS_Using/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/default.properties -------------------------------------------------------------------------------- /android/Android_GPS_Using/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/proguard.cfg -------------------------------------------------------------------------------- /android/Android_GPS_Using/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Android_GPS_Using/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Android_GPS_Using/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Android_GPS_Using/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/res/layout/main.xml -------------------------------------------------------------------------------- /android/Android_GPS_Using/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/res/values/strings.xml -------------------------------------------------------------------------------- /android/Android_GPS_Using/src/com/hrupin/HelloAndroidGpsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Android_GPS_Using/src/com/hrupin/HelloAndroidGpsActivity.java -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/.gitignore -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/build.gradle -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/build.gradle -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/gradle.properties -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/gradlew -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ApplicationCacheDirSize/gradlew.bat -------------------------------------------------------------------------------- /android/ApplicationCacheDirSize/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/.classpath -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/.project -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/README.md -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/proguard.cfg -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/project.properties -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/res/layout/main.xml -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/res/values/strings.xml -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/src/com/hrupin/cleaner/ClearUserDataSampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/src/com/hrupin/cleaner/ClearUserDataSampleActivity.java -------------------------------------------------------------------------------- /android/Clear_User_Data_Sample/src/com/hrupin/cleaner/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Clear_User_Data_Sample/src/com/hrupin/cleaner/MyApplication.java -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/.classpath -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/.project -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/README.md -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/default.properties -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/proguard.cfg -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/res/layout/first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/res/layout/first.xml -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/res/layout/second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/res/layout/second.xml -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/res/layout/third.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/res/layout/third.xml -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/res/values/strings.xml -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/src/com/hrupin/AppBaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/src/com/hrupin/AppBaseActivity.java -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/src/com/hrupin/FirstActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/src/com/hrupin/FirstActivity.java -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/src/com/hrupin/SecondActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/src/com/hrupin/SecondActivity.java -------------------------------------------------------------------------------- /android/Close_All_Activities_Prj/src/com/hrupin/ThirdActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Close_All_Activities_Prj/src/com/hrupin/ThirdActivity.java -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/.classpath -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/.project -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/README.md -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/proguard-project.txt -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/project.properties -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/res/drawable-hdpi/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/res/drawable-hdpi/thumb.png -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/res/layout/main.xml -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/res/values/strings.xml -------------------------------------------------------------------------------- /android/Custom_FastScroll_Style_for_scrollbars_Android/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_FastScroll_Style_for_scrollbars_Android/res/values/styles.xml -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/.classpath -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/.project -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/README.md -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/assets/AeroviasBrasilNF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/assets/AeroviasBrasilNF.ttf -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/proguard-project.txt -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/project.properties -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/res/layout/main.xml -------------------------------------------------------------------------------- /android/Custom_Font_In_Android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Font_In_Android/res/values/strings.xml -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/.classpath -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/.project -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/README.md -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/proguard-project.txt -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/project.properties -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/res/layout/list_item.xml -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/res/layout/main.xml -------------------------------------------------------------------------------- /android/Custom_Group_Indicator_For_ExpandableListView/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Group_Indicator_For_ExpandableListView/res/values/strings.xml -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/.classpath -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/.project -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/README.md -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/default.properties -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/proguard.cfg -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/res/drawable/image_for_rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/res/drawable/image_for_rotation.png -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/res/drawable/my_progress_indeterminate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/res/drawable/my_progress_indeterminate.xml -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/res/layout/main.xml -------------------------------------------------------------------------------- /android/Custom_Indeterminate_Progressbar/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Indeterminate_Progressbar/res/values/strings.xml -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/.classpath -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/.project -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/README.md -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/proguard-project.txt -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/project.properties -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/res/drawable-hdpi/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/res/drawable-hdpi/thumb.png -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/res/layout/main.xml -------------------------------------------------------------------------------- /android/Custom_ScrollBar_Android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_ScrollBar_Android/res/values/strings.xml -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/.classpath -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/.project -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/README.md -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/default.properties -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/proguard.cfg -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/checkbox_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/checkbox_selector.xml -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/radio.png -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/radio_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/radio_down.png -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/radiobutton_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/radiobutton_selector.xml -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/star.png -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/star_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/drawable/star_down.png -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/layout/main.xml -------------------------------------------------------------------------------- /android/Custom_Style_For_CheckBox_And_RadioButton/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Custom_Style_For_CheckBox_And_RadioButton/res/values/strings.xml -------------------------------------------------------------------------------- /android/DaggerUsage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/.gitignore -------------------------------------------------------------------------------- /android/DaggerUsage/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/DaggerUsage/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/build.gradle -------------------------------------------------------------------------------- /android/DaggerUsage/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/java/com/hrupin/daggerusage/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/java/com/hrupin/daggerusage/MainActivity.java -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/java/com/hrupin/daggerusage/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/java/com/hrupin/daggerusage/MyApplication.java -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/java/com/hrupin/daggerusage/MyComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/java/com/hrupin/daggerusage/MyComponent.java -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/java/com/hrupin/daggerusage/MySharedPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/java/com/hrupin/daggerusage/MySharedPreferences.java -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/DaggerUsage/app/src/test/java/com/hrupin/daggerusage/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/app/src/test/java/com/hrupin/daggerusage/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/DaggerUsage/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/build.gradle -------------------------------------------------------------------------------- /android/DaggerUsage/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/gradle.properties -------------------------------------------------------------------------------- /android/DaggerUsage/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/DaggerUsage/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/DaggerUsage/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/gradlew -------------------------------------------------------------------------------- /android/DaggerUsage/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DaggerUsage/gradlew.bat -------------------------------------------------------------------------------- /android/DaggerUsage/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/DensityChecker/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/AndroidManifest.xml -------------------------------------------------------------------------------- /android/DensityChecker/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/ic_launcher-web.png -------------------------------------------------------------------------------- /android/DensityChecker/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/proguard-project.txt -------------------------------------------------------------------------------- /android/DensityChecker/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/project.properties -------------------------------------------------------------------------------- /android/DensityChecker/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DensityChecker/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DensityChecker/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DensityChecker/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DensityChecker/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/DensityChecker/res/values-hdpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/values-hdpi/strings.xml -------------------------------------------------------------------------------- /android/DensityChecker/res/values-ldpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/values-ldpi/strings.xml -------------------------------------------------------------------------------- /android/DensityChecker/res/values-mdpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/values-mdpi/strings.xml -------------------------------------------------------------------------------- /android/DensityChecker/res/values-xhdpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/values-xhdpi/strings.xml -------------------------------------------------------------------------------- /android/DensityChecker/res/values-xxhdpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/values-xxhdpi/strings.xml -------------------------------------------------------------------------------- /android/DensityChecker/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/res/values/strings.xml -------------------------------------------------------------------------------- /android/DensityChecker/src/com/hrupin/densitychecker/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DensityChecker/src/com/hrupin/densitychecker/MainActivity.java -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/AndroidManifest.xml -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/ic_launcher-web.png -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/proguard-project.txt -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/project.properties -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/res/values/dimens.xml -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/res/values/strings.xml -------------------------------------------------------------------------------- /android/DrawableSizeCalculator/src/com/hrupin/drawablesizecalculator/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DrawableSizeCalculator/src/com/hrupin/drawablesizecalculator/MainActivity.java -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/.gitignore -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/README.md -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/build.gradle -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/drawable-hdpi/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/drawable-hdpi/ic_action_delete.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/drawable-hdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/drawable-hdpi/ic_action_edit.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/drawable-mdpi/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/drawable-mdpi/ic_action_delete.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/drawable-mdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/drawable-mdpi/ic_action_edit.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/drawable-xhdpi/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/drawable-xhdpi/ic_action_delete.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/drawable-xhdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/drawable-xhdpi/ic_action_edit.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/drawable-xxhdpi/ic_action_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/drawable-xxhdpi/ic_action_delete.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/drawable-xxhdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/drawable-xxhdpi/ic_action_edit.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/build.gradle -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/gradle.properties -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/gradlew -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/DynamicOptionsMenuSample/gradlew.bat -------------------------------------------------------------------------------- /android/DynamicOptionsMenuSample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/.project -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/README.md -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/.classpath -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/.project -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/default.properties -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/pom.xml -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/res/layout/main.xml -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/application/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/application/res/values/strings.xml -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/.classpath -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/.project -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/default.properties -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/pom.xml -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable-hdpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable-hdpi/close.png -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable-ldpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable-ldpi/close.png -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable-xhdpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable-xhdpi/close.png -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable/close.png -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/facebook/res/drawable/facebook_icon.png -------------------------------------------------------------------------------- /android/Facebook_Android_Maven_Sample_Parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Facebook_Android_Maven_Sample_Parent/pom.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/README.md -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/build.gradle -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/assets/mockapi/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/assets/mockapi/login.json -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/FakeInterceptorSample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/build.gradle -------------------------------------------------------------------------------- /android/FakeInterceptorSample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/gradle.properties -------------------------------------------------------------------------------- /android/FakeInterceptorSample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/FakeInterceptorSample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/FakeInterceptorSample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/gradlew -------------------------------------------------------------------------------- /android/FakeInterceptorSample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/FakeInterceptorSample/gradlew.bat -------------------------------------------------------------------------------- /android/FakeInterceptorSample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/.classpath -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/.project -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/README.md -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/proguard-project.txt -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/project.properties -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/res/layout/main.xml -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/res/values/strings.xml -------------------------------------------------------------------------------- /android/Filter_ListView_Sample/src/com/hrupin/sample/filterlist/Storage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample/src/com/hrupin/sample/filterlist/Storage.java -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/.classpath -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/.project -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/README.md -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/proguard-project.txt -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/project.properties -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/res/layout/item_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/res/layout/item_list.xml -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/res/layout/main.xml -------------------------------------------------------------------------------- /android/Filter_ListView_Sample_Custom_Objects/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Filter_ListView_Sample_Custom_Objects/res/values/strings.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/.classpath -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/.project -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/AndroidManifest.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/LICENSE-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/LICENSE-2.0.html -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/google-play-services_lib/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/google-play-services_lib/.classpath -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/google-play-services_lib/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/google-play-services_lib/.project -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/google-play-services_lib/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/google-play-services_lib/AndroidManifest.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/google-play-services_lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/google-play-services_lib/README.txt -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/google-play-services_lib/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/google-play-services_lib/project.properties -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/google-play-services_lib/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/google-play-services_lib/res/values/colors.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/google-play-services_lib/res/values/maps_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/google-play-services_lib/res/values/maps_attrs.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/google-play-services_lib/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/google-play-services_lib/res/values/strings.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/google-play-services_lib/src/android/UnusedStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/google-play-services_lib/src/android/UnusedStub.java -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/ic_launcher-web.png -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/libs/android-support-v4.jar -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/proguard-project.txt -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/project.properties -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/drawable-hdpi/balloon_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/drawable-hdpi/balloon_bg.9.png -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/layout/balloon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/layout/balloon.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/values/dimens.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/values/strings.xml -------------------------------------------------------------------------------- /android/GoogleMapsV2CustomBalloons/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/GoogleMapsV2CustomBalloons/res/values/styles.xml -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/.classpath -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/.project -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/README.md -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/default.properties -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/proguard.cfg -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/drawable-hdpi/balloon_overlay_bg_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/drawable-hdpi/balloon_overlay_bg_selector.xml -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/drawable-hdpi/balloon_overlay_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/drawable-hdpi/balloon_overlay_close.png -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/drawable-hdpi/balloon_overlay_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/drawable-hdpi/balloon_overlay_focused.9.png -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/drawable-hdpi/balloon_overlay_unfocused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/drawable-hdpi/balloon_overlay_unfocused.9.png -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/drawable-hdpi/default_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/drawable-hdpi/default_marker.png -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/layout/balloon_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/layout/balloon_overlay.xml -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/layout/main.xml -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/res/values/strings.xml -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/BalloonItemizedOverlay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/BalloonItemizedOverlay.java -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/BalloonOverlayView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/BalloonOverlayView.java -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/MapDataItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/MapDataItem.java -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/MyItemizedOverlay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/MyItemizedOverlay.java -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/StartActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/StartActivity.java -------------------------------------------------------------------------------- /android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Balloon_Trics/src/com/hrupin/lazymarkers/Utils.java -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/.classpath -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/.project -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/README.md -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/default.properties -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/proguard.cfg -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/res/drawable-hdpi/default_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/res/drawable-hdpi/default_marker.png -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/res/layout/main.xml -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/res/values/strings.xml -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/Loger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/Loger.java -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/ShowRouteAsyncTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/ShowRouteAsyncTask.java -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/StartActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/StartActivity.java -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/route/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/route/Point.java -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/route/Road.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/route/Road.java -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/route/RoadProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/route/RoadProvider.java -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/route/RouteOverlay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/src/com/hrupin/maproute/route/RouteOverlay.java -------------------------------------------------------------------------------- /android/Google_Maps_DisplayRoute/src/java/properties/kml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_DisplayRoute/src/java/properties/kml.xml -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/.classpath -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/.project -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/README.md -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/proguard.cfg -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/project.properties -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/res/drawable-hdpi/default_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/res/drawable-hdpi/default_marker.png -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/res/layout/main.xml -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Deleting/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Deleting/res/values/strings.xml -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/.classpath -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/.project -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/README.md -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/default.properties -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/proguard.cfg -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/res/drawable-hdpi/default_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/res/drawable-hdpi/default_marker.png -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/res/layout/main.xml -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/res/values/strings.xml -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/src/com/hrupin/lazymarkers/MapDataItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/src/com/hrupin/lazymarkers/MapDataItem.java -------------------------------------------------------------------------------- /android/Google_Maps_Marker_Lazy_Loading/src/com/hrupin/lazymarkers/StartActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Google_Maps_Marker_Lazy_Loading/src/com/hrupin/lazymarkers/StartActivity.java -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/.classpath -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/.project -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/AndroidManifest.xml -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/ic_launcher-web.png -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/proguard-project.txt -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/project.properties -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/res/drawable-hdpi/src_image.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/res/drawable-hdpi/src_image.9.png -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/res/layout/main.xml -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/res/values/strings.xml -------------------------------------------------------------------------------- /android/ImageButtonSrcCenterSample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ImageButtonSrcCenterSample/res/values/styles.xml -------------------------------------------------------------------------------- /android/LoaderManagerSample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/.classpath -------------------------------------------------------------------------------- /android/LoaderManagerSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/.project -------------------------------------------------------------------------------- /android/LoaderManagerSample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/AndroidManifest.xml -------------------------------------------------------------------------------- /android/LoaderManagerSample/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/ic_launcher-web.png -------------------------------------------------------------------------------- /android/LoaderManagerSample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /android/LoaderManagerSample/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/proguard-project.txt -------------------------------------------------------------------------------- /android/LoaderManagerSample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/project.properties -------------------------------------------------------------------------------- /android/LoaderManagerSample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/LoaderManagerSample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/LoaderManagerSample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/LoaderManagerSample/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/LoaderManagerSample/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/LoaderManagerSample/res/layout/fragment_my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/res/layout/fragment_my.xml -------------------------------------------------------------------------------- /android/LoaderManagerSample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/res/values/strings.xml -------------------------------------------------------------------------------- /android/LoaderManagerSample/src/com/hrupin/samples/loadermanagersample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/src/com/hrupin/samples/loadermanagersample/MainActivity.java -------------------------------------------------------------------------------- /android/LoaderManagerSample/src/com/hrupin/samples/loadermanagersample/MyFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/src/com/hrupin/samples/loadermanagersample/MyFragment.java -------------------------------------------------------------------------------- /android/LoaderManagerSample/src/com/hrupin/samples/loadermanagersample/MyLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/LoaderManagerSample/src/com/hrupin/samples/loadermanagersample/MyLoader.java -------------------------------------------------------------------------------- /android/Mp3_Player/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | build -------------------------------------------------------------------------------- /android/Mp3_Player/Mp3_Player.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/Mp3_Player.iml -------------------------------------------------------------------------------- /android/Mp3_Player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/README.md -------------------------------------------------------------------------------- /android/Mp3_Player/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/app.iml -------------------------------------------------------------------------------- /android/Mp3_Player/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/build.gradle -------------------------------------------------------------------------------- /android/Mp3_Player/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Mp3_Player/app/src/main/java/com/hrupin/mp3player/Mp3player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/src/main/java/com/hrupin/mp3player/Mp3player.java -------------------------------------------------------------------------------- /android/Mp3_Player/app/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Mp3_Player/app/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Mp3_Player/app/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Mp3_Player/app/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /android/Mp3_Player/app/src/main/res/raw/testsong_20_sec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/src/main/res/raw/testsong_20_sec.mp3 -------------------------------------------------------------------------------- /android/Mp3_Player/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/Mp3_Player/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/build.gradle -------------------------------------------------------------------------------- /android/Mp3_Player/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/Mp3_Player/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/Mp3_Player/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/gradlew -------------------------------------------------------------------------------- /android/Mp3_Player/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Mp3_Player/gradlew.bat -------------------------------------------------------------------------------- /android/Mp3_Player/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/.classpath -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/.project -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/README.md -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/default.properties -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/pom.xml -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/res/layout/main.xml -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/res/values/strings.xml -------------------------------------------------------------------------------- /android/Open_Android_App_Via_Bash_Script/scripts/run_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Open_Android_App_Via_Bash_Script/scripts/run_app.sh -------------------------------------------------------------------------------- /android/Popup_Animation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/.classpath -------------------------------------------------------------------------------- /android/Popup_Animation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/.project -------------------------------------------------------------------------------- /android/Popup_Animation/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Popup_Animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/README.md -------------------------------------------------------------------------------- /android/Popup_Animation/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/default.properties -------------------------------------------------------------------------------- /android/Popup_Animation/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/proguard.cfg -------------------------------------------------------------------------------- /android/Popup_Animation/res/anim/popup_hide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/res/anim/popup_hide.xml -------------------------------------------------------------------------------- /android/Popup_Animation/res/anim/popup_show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/res/anim/popup_show.xml -------------------------------------------------------------------------------- /android/Popup_Animation/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Popup_Animation/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Popup_Animation/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Popup_Animation/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/res/layout/main.xml -------------------------------------------------------------------------------- /android/Popup_Animation/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/res/values/strings.xml -------------------------------------------------------------------------------- /android/Popup_Animation/src/com/hrupin/SampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Popup_Animation/src/com/hrupin/SampleActivity.java -------------------------------------------------------------------------------- /android/SMS_Detector/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/.classpath -------------------------------------------------------------------------------- /android/SMS_Detector/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/.project -------------------------------------------------------------------------------- /android/SMS_Detector/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/AndroidManifest.xml -------------------------------------------------------------------------------- /android/SMS_Detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/README.md -------------------------------------------------------------------------------- /android/SMS_Detector/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/proguard-project.txt -------------------------------------------------------------------------------- /android/SMS_Detector/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/project.properties -------------------------------------------------------------------------------- /android/SMS_Detector/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/SMS_Detector/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/SMS_Detector/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/SMS_Detector/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/SMS_Detector/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/res/layout/main.xml -------------------------------------------------------------------------------- /android/SMS_Detector/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/res/values/strings.xml -------------------------------------------------------------------------------- /android/SMS_Detector/src/com/hrupin/sample/sms/SMSDetectorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/src/com/hrupin/sample/sms/SMSDetectorActivity.java -------------------------------------------------------------------------------- /android/SMS_Detector/src/com/hrupin/sample/sms/SmsBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SMS_Detector/src/com/hrupin/sample/sms/SmsBroadcastReceiver.java -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/.gitignore -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/Send_Email_With_Attached_Textfile.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/Send_Email_With_Attached_Textfile.iml -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/app/app.iml -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/app/build.gradle -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/build.gradle -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/gradle.properties -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/gradlew -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Email_With_Attached_Textfile/gradlew.bat -------------------------------------------------------------------------------- /android/Send_Email_With_Attached_Textfile/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/.classpath -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/.project -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/README.md -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/proguard-project.txt -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/project.properties -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/res/layout/main.xml -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/res/layout/second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/res/layout/second.xml -------------------------------------------------------------------------------- /android/Send_Intent_By_Hyperlink_Click/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Send_Intent_By_Hyperlink_Click/res/values/strings.xml -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/.gitignore -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/ShakeDetectSampleApplication.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/ShakeDetectSampleApplication.iml -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/app.iml -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/build.gradle -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/build.gradle -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/gradle.properties -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/gradlew -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/ShakeDetectSampleApplication/gradlew.bat -------------------------------------------------------------------------------- /android/ShakeDetectSampleApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/.classpath -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/.project -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/README.md -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/default.properties -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/proguard.cfg -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/res/layout/main.xml -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/res/values/strings.xml -------------------------------------------------------------------------------- /android/Smooth_Scroll_to_position_Listview/src/com/hrupin/TestActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Smooth_Scroll_to_position_Listview/src/com/hrupin/TestActivity.java -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/.classpath -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/.project -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/README.md -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/proguard-project.txt -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/project.properties -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/res/layout/main.xml -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/res/raw/sound_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/res/raw/sound_1.mp3 -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/res/values/strings.xml -------------------------------------------------------------------------------- /android/Sound_Effects_In_Android/src/com/hrupin/sample/soundeffects/Effects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Sound_Effects_In_Android/src/com/hrupin/sample/soundeffects/Effects.java -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/SystemAlertWindowSample.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/SystemAlertWindowSample.iml -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/app.iml -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/build.gradle -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/build.gradle -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/gradle.properties -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/gradlew -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/SystemAlertWindowSample/gradlew.bat -------------------------------------------------------------------------------- /android/SystemAlertWindowSample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android/TabActivity_Sample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/.classpath -------------------------------------------------------------------------------- /android/TabActivity_Sample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/.project -------------------------------------------------------------------------------- /android/TabActivity_Sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/AndroidManifest.xml -------------------------------------------------------------------------------- /android/TabActivity_Sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/README.md -------------------------------------------------------------------------------- /android/TabActivity_Sample/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/default.properties -------------------------------------------------------------------------------- /android/TabActivity_Sample/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/proguard.cfg -------------------------------------------------------------------------------- /android/TabActivity_Sample/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/TabActivity_Sample/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/TabActivity_Sample/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/TabActivity_Sample/res/layout/first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/res/layout/first.xml -------------------------------------------------------------------------------- /android/TabActivity_Sample/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/res/layout/main.xml -------------------------------------------------------------------------------- /android/TabActivity_Sample/res/layout/second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/res/layout/second.xml -------------------------------------------------------------------------------- /android/TabActivity_Sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/res/values/strings.xml -------------------------------------------------------------------------------- /android/TabActivity_Sample/src/com/hrupin/FirstTabActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/src/com/hrupin/FirstTabActivity.java -------------------------------------------------------------------------------- /android/TabActivity_Sample/src/com/hrupin/SecondTabActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/src/com/hrupin/SecondTabActivity.java -------------------------------------------------------------------------------- /android/TabActivity_Sample/src/com/hrupin/TabActivitySampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/TabActivity_Sample/src/com/hrupin/TabActivitySampleActivity.java -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/.classpath -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/.project -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/AndroidManifest.xml -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/README.md -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/proguard-project.txt -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/project.properties -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/res/layout/main.xml -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/res/values/strings.xml -------------------------------------------------------------------------------- /android/Wifi_Switcher_Example/src/com/hrupin/wifiSample/WifiSwitcherExampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/android/Wifi_Switcher_Example/src/com/hrupin/wifiSample/WifiSwitcherExampleActivity.java -------------------------------------------------------------------------------- /bash/canon_ip_3600/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/bash/canon_ip_3600/README.md -------------------------------------------------------------------------------- /bash/canon_ip_3600/ip3600.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/bash/canon_ip_3600/ip3600.sh -------------------------------------------------------------------------------- /bash/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/bash/cron/README.md -------------------------------------------------------------------------------- /bash/cron/certrenew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/bash/cron/certrenew.sh -------------------------------------------------------------------------------- /bash/cron/mysqlfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/bash/cron/mysqlfix.sh -------------------------------------------------------------------------------- /bash/cron/nginxfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/bash/cron/nginxfix.sh -------------------------------------------------------------------------------- /bash/virtualhost_on_ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/bash/virtualhost_on_ubuntu/README.md -------------------------------------------------------------------------------- /bash/virtualhost_on_ubuntu/vhosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/bash/virtualhost_on_ubuntu/vhosts.sh -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample/AppDelegate.h -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample/AppDelegate.m -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample/Info.plist -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample/Utils.h -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample/Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample/Utils.m -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample/ViewController.h -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample/ViewController.m -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSample/main.m -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSampleTests/HexadecimalColorsSampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSampleTests/HexadecimalColorsSampleTests.m -------------------------------------------------------------------------------- /ios/HexadecimalColorsSample/HexadecimalColorsSampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/ios/HexadecimalColorsSample/HexadecimalColorsSampleTests/Info.plist -------------------------------------------------------------------------------- /php/githublink/githublink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/php/githublink/githublink.php -------------------------------------------------------------------------------- /php/githublink/img/gitHub-download-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihrupin/samples/HEAD/php/githublink/img/gitHub-download-button.png --------------------------------------------------------------------------------