├── Alaram App ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ └── res │ │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.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 │ │ │ │ └── layout │ │ │ │ └── pop_time.xml │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── alrubaye │ │ │ │ └── alaram │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── alrubaye │ │ │ └── alaram │ │ │ └── ExampleInstrumentedTest.java │ └── proguard-rules.pro ├── settings.gradle ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── compiler.xml │ └── gradle.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle └── gradle.properties ├── MyTracker ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ ├── cover.png │ │ │ │ │ ├── dmap.png │ │ │ │ │ ├── gpsoff.png │ │ │ │ │ ├── gpson.png │ │ │ │ │ ├── left.png │ │ │ │ │ ├── imagecover.png │ │ │ │ │ ├── imagecover_flag.png │ │ │ │ │ ├── ic_add_white_24dp.png │ │ │ │ │ ├── ic_done_white_24dp.png │ │ │ │ │ ├── ic_action_stat_share.png │ │ │ │ │ ├── ic_cached_white_24dp.png │ │ │ │ │ ├── ic_3d_rotation_white_24dp.png │ │ │ │ │ ├── ic_account_circle_white_24dp.png │ │ │ │ │ ├── ic_directions_car_white_24dp.png │ │ │ │ │ ├── ic_local_hospital_white_24dp.png │ │ │ │ │ ├── ic_perm_identity_white_24dp.png │ │ │ │ │ ├── ic_record_voice_over_white_24dp.png │ │ │ │ │ └── backgroundwhite.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ ├── layout │ │ │ │ │ ├── activity_maps.xml │ │ │ │ │ ├── news_ticket_loading.xml │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── activity_my_trackers.xml │ │ │ │ │ └── news_ticket_no_news.xml │ │ │ │ └── menu │ │ │ │ │ ├── menu_contact_list.xml │ │ │ │ │ └── main_menu.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── alrubaye │ │ │ │ └── mytracker │ │ │ │ ├── AdapterItems.java │ │ │ │ └── StartOs.java │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── alrubaye │ │ │ └── mytracker │ │ │ └── ExampleUnitTest.java │ └── proguard-rules.pro ├── settings.gradle ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── compiler.xml │ └── gradle.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── README.md ├── build.gradle └── gradle.properties ├── CitySunsetTime ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ └── play.jpg │ │ │ │ ├── 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 │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── example_picture.png │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── ic_action_stat_reply.png │ │ │ │ │ ├── ic_action_stat_share.png │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── ic_action_stat_reply.png │ │ │ │ │ ├── ic_action_stat_share.png │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── ic_action_stat_reply.png │ │ │ │ │ ├── ic_action_stat_share.png │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-hdpi-v11 │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-hdpi-v9 │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-mdpi-v11 │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-mdpi-v9 │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-xhdpi-v9 │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-xhdpi-v11 │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-xxhdpi-v11 │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── drawable-xxhdpi-v9 │ │ │ │ │ └── ic_stat_new_message.png │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ └── AndroidManifest.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussienalrubaye │ │ │ └── services │ │ │ └── ExampleUnitTest.java │ └── proguard-rules.pro ├── settings.gradle ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── compiler.xml │ └── gradle.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle └── gradle.properties ├── MyCurrentLocationApp ├── app │ ├── .gitignore │ └── src │ │ ├── main │ │ └── res │ │ │ ├── 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 │ │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── layout │ │ │ └── activity_maps.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── hussein │ │ └── mycurrentlocation │ │ └── ExampleUnitTest.java ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── .idea │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── gradle.xml ├── build.gradle └── gradle.properties ├── SqliteDBAndroidExample ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ ├── add.png │ │ │ │ │ ├── add1.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── home1.png │ │ │ │ │ └── settings.png │ │ │ │ ├── values-xhdpi │ │ │ │ │ └── dimens.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 │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── menu │ │ │ │ │ └── mainmenu.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussienalrubaye │ │ │ │ │ └── androiddemowork │ │ │ │ │ └── AdapterItems.java │ │ │ └── AndroidManifest.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussienalrubaye │ │ │ └── androiddemowork │ │ │ └── ExampleUnitTest.java │ └── proguard-rules.pro ├── settings.gradle ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── compiler.xml │ └── gradle.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle └── gradle.properties ├── TwitterApp ├── TwitterDem │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── add.png │ │ │ │ │ │ ├── tweets.png │ │ │ │ │ │ ├── persoicon.png │ │ │ │ │ │ ├── twitter.jpg │ │ │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ │ │ ├── ic_send_black_24dp.png │ │ │ │ │ │ ├── ic_attach_file_black_24dp.png │ │ │ │ │ │ ├── ic_account_circle_black_24dp.png │ │ │ │ │ │ ├── ic_favorite_border_black_24dp.png │ │ │ │ │ │ └── background.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 │ │ │ │ │ ├── menu │ │ │ │ │ │ └── menu_main.xml │ │ │ │ │ └── layout │ │ │ │ │ │ ├── tweet_loading.xml │ │ │ │ │ │ └── tweet_msg.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── alrubaye │ │ │ │ │ └── twitterdem │ │ │ │ │ └── SearchType.java │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── alrubaye │ │ │ │ └── twitterdem │ │ │ │ └── ExampleUnitTest.java │ │ └── proguard-rules.pro │ ├── settings.gradle │ ├── .idea │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ ├── compiler.xml │ │ └── gradle.xml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── .gitignore │ ├── build.gradle │ └── gradle.properties ├── TwitterDemStart │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── add.png │ │ │ │ │ │ ├── tweets.png │ │ │ │ │ │ ├── twitter.jpg │ │ │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ │ │ ├── ic_home_white_24dp.png │ │ │ │ │ │ ├── ic_send_black_24dp.png │ │ │ │ │ │ ├── ic_attach_file_black_24dp.png │ │ │ │ │ │ ├── ic_account_circle_black_24dp.png │ │ │ │ │ │ ├── ic_favorite_border_black_24dp.png │ │ │ │ │ │ └── background.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 │ │ │ │ │ ├── menu │ │ │ │ │ │ └── menu_main.xml │ │ │ │ │ └── layout │ │ │ │ │ │ ├── tweet_loading.xml │ │ │ │ │ │ └── tweet_msg.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── alrubaye │ │ │ │ │ └── twitterdem │ │ │ │ │ └── SearchType.java │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── alrubaye │ │ │ │ └── twitterdem │ │ │ │ └── ExampleUnitTest.java │ │ └── proguard-rules.pro │ ├── settings.gradle │ ├── .idea │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ ├── compiler.xml │ │ └── gradle.xml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── .gitignore │ ├── build.gradle │ └── gradle.properties ├── .idea │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── TwitterApp.iml ├── TwitterServer │ ├── DBInfo.php │ ├── Register.php │ ├── TweetAdd.php │ ├── IsFollowing.php │ ├── UserFollowing.php │ └── login.php └── README.md ├── MediaPlayerAndroidExample ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── styles.xml │ │ │ │ │ └── dimens.xml │ │ │ │ ├── menu │ │ │ │ │ └── menu_main.xml │ │ │ │ └── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── hussienalrubaye │ │ │ │ └── seekbar │ │ │ │ └── SongInfo.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── hussienalrubaye │ │ │ └── seekbar │ │ │ └── ApplicationTest.java │ ├── build.gradle │ └── proguard-rules.pro ├── settings.gradle ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── compiler.xml │ └── gradle.xml ├── .gitignore ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── build.gradle ├── PHP Webservice ├── AndroidAPP │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ └── styles.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 │ │ │ │ │ └── layout │ │ │ │ │ │ └── layout_ticket.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── hussienalrubaye │ │ │ │ │ └── phplogin │ │ │ │ │ └── AdapterItems.java │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussienalrubaye │ │ │ │ └── phplogin │ │ │ │ └── ExampleUnitTest.java │ │ └── proguard-rules.pro │ ├── settings.gradle │ ├── .idea │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ ├── compiler.xml │ │ └── gradle.xml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── .gitignore │ ├── build.gradle │ └── gradle.properties └── phpAndroid │ ├── add.php │ ├── tracking.php │ └── list.php ├── Pockemon └── MyCurrentLocationApp │ ├── app │ ├── .gitignore │ └── src │ │ ├── main │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── mario.png │ │ │ │ ├── squirtle.png │ │ │ │ ├── bulbasaur.png │ │ │ │ └── charmander.png │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ └── layout │ │ │ │ └── activity_maps.xml │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── mycurrentlocation │ │ │ └── Pockemon.java │ │ └── test │ │ └── java │ │ └── com │ │ └── hussein │ │ └── mycurrentlocation │ │ └── ExampleUnitTest.java │ ├── settings.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── .gitignore │ ├── .idea │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── gradle.xml │ ├── build.gradle │ └── gradle.properties ├── TicTacToyGame ├── TicTacToyLocal2 │ ├── app │ │ ├── .gitignore │ │ └── src │ │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.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 │ │ │ └── AndroidManifest.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── tictactoylocal │ │ │ └── ExampleUnitTest.java │ ├── settings.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── .gitignore │ ├── .idea │ │ ├── encodings.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── gradle.xml │ ├── build.gradle │ └── gradle.properties └── TicTacToyOnline │ ├── app │ ├── .gitignore │ └── src │ │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ └── AndroidManifest.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── hussein │ │ └── tictactoyonline │ │ └── ExampleUnitTest.java │ ├── settings.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── .gitignore │ ├── .idea │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── gradle.xml │ ├── build.gradle │ └── gradle.properties ├── Assets └── mapApp │ ├── mario.png │ ├── squirtle.png │ ├── bulbasaur.png │ └── charmander.png ├── JSONvsXML ├── info.txt ├── Info.json └── info.xml ├── VulnerabilityNote.txt ├── AndroidVulnerabilityNote.txt ├── FindMyPhone Assets ├── Assets │ ├── cover.png │ ├── dmap.png │ ├── gpsoff.png │ ├── gpson.png │ ├── left.png │ ├── imagecover.png │ ├── imagecover_flag.png │ ├── ic_add_white_24dp.png │ ├── ic_done_white_24dp.png │ ├── ic_action_stat_share.png │ ├── ic_cached_white_24dp.png │ ├── ic_3d_rotation_white_24dp.png │ ├── ic_account_circle_white_24dp.png │ ├── ic_directions_car_white_24dp.png │ ├── ic_local_hospital_white_24dp.png │ ├── ic_perm_identity_white_24dp.png │ ├── ic_record_voice_over_white_24dp.png │ └── backgroundwhite.xml ├── menu │ ├── menu_contact_list.xml │ └── main_menu.xml └── layout │ ├── news_ticket_loading.xml │ └── news_ticket_no_news.xml ├── Userinfo.json ├── Notification.java ├── intent.java ├── string.txt ├── SharedPreferences.java ├── takePicture.txt ├── handle.java ├── PhpMySqlQuery.php ├── Web Services └── phpMySql.php ├── AlertDialog.java └── liveCycle.java /Alaram App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyTracker/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CitySunsetTime/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Alaram App/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyTracker/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CitySunsetTime/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Assets/mapApp/mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Assets/mapApp/mario.png -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Alaram 3 | 4 | -------------------------------------------------------------------------------- /Assets/mapApp/squirtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Assets/mapApp/squirtle.png -------------------------------------------------------------------------------- /JSONvsXML/info.txt: -------------------------------------------------------------------------------- 1 | name=hussien 2 | age=27 3 | Langauges=Android, iOS,C#,Java 4 | jobs=NYC ,developer| CA,tester| FL, manager -------------------------------------------------------------------------------- /VulnerabilityNote.txt: -------------------------------------------------------------------------------- 1 | 2 | Android Vulnerability GitHub Repository 3 | 4 | https://github.com/dan7800/VulnerableAndroidAppOracle -------------------------------------------------------------------------------- /Alaram App/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Assets/mapApp/bulbasaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Assets/mapApp/bulbasaur.png -------------------------------------------------------------------------------- /Assets/mapApp/charmander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Assets/mapApp/charmander.png -------------------------------------------------------------------------------- /MyTracker/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AndroidVulnerabilityNote.txt: -------------------------------------------------------------------------------- 1 | 2 | Android Vulnerability GitHub Repository 3 | 4 | https://github.com/dan7800/VulnerableAndroidAppOracle -------------------------------------------------------------------------------- /CitySunsetTime/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Twitter 3 | 4 | -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/cover.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/dmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/dmap.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/gpsoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/gpsoff.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/gpson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/gpson.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/left.png -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | PHPLogin 3 | 4 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Twitter 3 | 4 | -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/imagecover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/imagecover.png -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TicTacToyLocal 3 | 4 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TicTacToyOnline 3 | 4 | -------------------------------------------------------------------------------- /MyTracker/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Alaram App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Alaram App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/imagecover_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/imagecover_flag.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/cover.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/dmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/dmap.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/gpsoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/gpsoff.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/gpson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/gpson.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/left.png -------------------------------------------------------------------------------- /CitySunsetTime/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_add_white_24dp.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_done_white_24dp.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable/play.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable/play.jpg -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_action_stat_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_action_stat_share.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_cached_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_cached_white_24dp.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/imagecover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/imagecover.png -------------------------------------------------------------------------------- /Alaram App/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Alaram App/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Alaram App/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Alaram App/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_3d_rotation_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_3d_rotation_white_24dp.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyTracker/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/imagecover_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/imagecover_flag.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyTracker 3 | Map 4 | 5 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/drawable/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/drawable/add.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/add.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Alaram App/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Alaram App/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CitySunsetTime/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_account_circle_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_account_circle_white_24dp.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_directions_car_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_directions_car_white_24dp.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_local_hospital_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_local_hospital_white_24dp.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_perm_identity_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_perm_identity_white_24dp.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_add_white_24dp.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_done_white_24dp.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/drawable/add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/drawable/add1.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/drawable/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/drawable/home.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/drawable/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/drawable/home1.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/values-xhdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 40sp 5 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/tweets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/tweets.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/ic_record_voice_over_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/FindMyPhone Assets/Assets/ic_record_voice_over_white_24dp.png -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MediaPlayerAndroidExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyCurrentLocationApp/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_action_stat_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_action_stat_share.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_cached_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_cached_white_24dp.png -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/PHP Webservice/AndroidAPP/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SqliteDBAndroidExample/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/drawable/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/drawable/settings.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/persoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/persoicon.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/twitter.jpg -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/drawable/add.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/tweets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/drawable/tweets.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-nodpi/example_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-nodpi/example_picture.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyCurrentLocation 3 | Map 4 | 5 | -------------------------------------------------------------------------------- /MyTracker/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_3d_rotation_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_3d_rotation_white_24dp.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/drawable/mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/drawable/mario.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/drawable/twitter.jpg -------------------------------------------------------------------------------- /Alaram App/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CitySunsetTime/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_account_circle_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_account_circle_white_24dp.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_directions_car_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_directions_car_white_24dp.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_local_hospital_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_local_hospital_white_24dp.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_perm_identity_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_perm_identity_white_24dp.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/drawable/squirtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/drawable/squirtle.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyCurrentLocation 3 | Map 4 | 5 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-hdpi/ic_action_stat_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-hdpi/ic_action_stat_reply.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-hdpi/ic_action_stat_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-hdpi/ic_action_stat_share.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-hdpi/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-hdpi/ic_stat_new_message.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-mdpi/ic_action_stat_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-mdpi/ic_action_stat_reply.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-mdpi/ic_action_stat_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-mdpi/ic_action_stat_share.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-mdpi/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-mdpi/ic_stat_new_message.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-xhdpi/ic_action_stat_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-xhdpi/ic_action_stat_reply.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-xhdpi/ic_action_stat_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-xhdpi/ic_action_stat_share.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-xhdpi/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-xhdpi/ic_stat_new_message.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-xxhdpi/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-xxhdpi/ic_stat_new_message.png -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MediaPlayerAndroidExample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MediaPlayerAndroidExample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MediaPlayerAndroidExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/ic_record_voice_over_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyTracker/app/src/main/res/drawable/ic_record_voice_over_white_24dp.png -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/PHP Webservice/AndroidAPP/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/PHP Webservice/AndroidAPP/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/PHP Webservice/AndroidAPP/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/drawable/bulbasaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/drawable/bulbasaur.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/drawable/charmander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/drawable/charmander.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/SqliteDBAndroidExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/ic_home_black_24dp.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/ic_home_white_24dp.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/ic_send_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/ic_send_black_24dp.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-hdpi-v11/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-hdpi-v11/ic_stat_new_message.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-hdpi-v9/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-hdpi-v9/ic_stat_new_message.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-mdpi-v11/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-mdpi-v11/ic_stat_new_message.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-mdpi-v9/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-mdpi-v9/ic_stat_new_message.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-xhdpi-v9/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-xhdpi-v9/ic_stat_new_message.png -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MediaPlayerAndroidExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/PHP Webservice/AndroidAPP/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/PHP Webservice/AndroidAPP/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteDBAndroidExample/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-xhdpi-v11/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-xhdpi-v11/ic_stat_new_message.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-xxhdpi-v11/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-xxhdpi-v11/ic_stat_new_message.png -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/drawable-xxhdpi-v9/ic_stat_new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/CitySunsetTime/app/src/main/res/drawable-xxhdpi-v9/ic_stat_new_message.png -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/MyCurrentLocationApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_home_black_24dp.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_home_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_home_white_24dp.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_send_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_send_black_24dp.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/ic_attach_file_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/ic_attach_file_black_24dp.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/ic_account_circle_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/ic_account_circle_black_24dp.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/ic_favorite_border_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDem/app/src/main/res/drawable/ic_favorite_border_black_24dp.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/Pockemon/MyCurrentLocationApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyLocal2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TicTacToyGame/TicTacToyOnline/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_attach_file_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_attach_file_black_24dp.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_account_circle_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_account_circle_black_24dp.png -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_favorite_border_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/AndroidTutorialForBeginners/HEAD/TwitterApp/TwitterDemStart/app/src/main/res/drawable/ic_favorite_border_black_24dp.png -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | seekbar 3 | 4 | Hello world! 5 | Settings 6 | 7 | -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3f51b5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /TwitterApp/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /JSONvsXML/Info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"hussien", 3 | "age":27, 4 | "Langauges":["Android","iOS","C#","Java"], 5 | "jobs":[ 6 | { "Place":"NYC" ,"Title":"developer" }, 7 | { "Place":"CA" ,"Title":"tester" }, 8 | { "Place":"FL" ,"Title":"Manager" } 9 | ] 10 | 11 | } -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /Alaram App/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /MyTracker/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /CitySunsetTime/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon May 08 18:24:28 EDT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip 7 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Sep 08 21:48:45 EDT 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon May 08 18:24:28 EDT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip 7 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed May 03 07:01:01 EDT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip 7 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat May 06 09:23:21 EDT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip 7 | -------------------------------------------------------------------------------- /TwitterApp/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 12sp 6 | 7 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | #f9f9f9 8 | 9 | -------------------------------------------------------------------------------- /TwitterApp/TwitterServer/DBInfo.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Userinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": 3 | { 4 | "name":"Hussein", 5 | "age":27 6 | }, 7 | "jobs":[ 8 | { 9 | "id":1, 10 | "title":"Developer", 11 | "desc":"Develop apps for user", 12 | }, 13 | { 14 | "id":2, 15 | "title":"Tester", 16 | "desc":"test apps", 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/java/com/alrubaye/twitterdem/SearchType.java: -------------------------------------------------------------------------------- 1 | package com.alrubaye.twitterdem; 2 | 3 | /** 4 | * Created by hussienalrubaye on 11/13/16. 5 | */ 6 | 7 | public class SearchType { 8 | public static int MyFollowing=1; 9 | public static int OnePerson=2; 10 | public static int SearchIn=3; 11 | } 12 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/java/com/alrubaye/twitterdem/SearchType.java: -------------------------------------------------------------------------------- 1 | package com.alrubaye.twitterdem; 2 | 3 | /** 4 | * Created by hussienalrubaye on 11/13/16. 5 | */ 6 | 7 | public class SearchType { 8 | public static int MyFollowing=1; 9 | public static int OnePerson=2; 10 | public static int SearchIn=3; 11 | } 12 | -------------------------------------------------------------------------------- /TwitterApp/.idea/TwitterApp.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Alaram App/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CitySunsetTime/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MyTracker/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Notification.java: -------------------------------------------------------------------------------- 1 | NotificationCompat.Builder nbuild= new NotificationCompat.Builder(this); 2 | nbuild.setContentTitle("Danger") 3 | .setContentText("it will run soon") 4 | .setSmallIcon(R.drawable.play); 5 | 6 | NotificationManager manager=(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 7 | 8 | manager.notify(1,nbuild.build()); 9 | manager.cancel(1); -------------------------------------------------------------------------------- /SqliteDBAndroidExample/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/layout/activity_maps.xml: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/layout/activity_maps.xml: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/java/com/alrubaye/mytracker/AdapterItems.java: -------------------------------------------------------------------------------- 1 | package com.alrubaye.mytracker; 2 | 3 | /** 4 | * Created by hussienalrubaye on 9/26/16. 5 | */ 6 | 7 | public class AdapterItems 8 | { 9 | 10 | public String UserName; 11 | public String PhoneNumber; 12 | //for news details 13 | AdapterItems( String UserName,String PhoneNumber) 14 | { 15 | this. UserName=UserName; 16 | this. PhoneNumber=PhoneNumber; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /intent.java: -------------------------------------------------------------------------------- 1 | 2 | //intent send 3 | Intent intent=new Intent(this,Main2Activity.class); 4 | intent.putExtra("name","hussein alruabye"); 5 | intent.putExtra("age","26"); 6 | startActivity(intent); 7 | 8 | 9 | // intent reciver 10 | Bundle b= getIntent().getExtras(); 11 | TextView textView2=(TextView)findViewById(R.id.textView2); 12 | textView2.setText("Name:"+ b.getString("name")+ 13 | "age:"+ b.getString("age")); -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/layout/activity_maps.xml: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /JSONvsXML/info.xml: -------------------------------------------------------------------------------- 1 | 2 | hussien 3 | 27 4 | 5 | Android 6 | iOS 7 | C# 8 | Java 9 | 10 | 11 | 12 | 13 | developer 14 | NYC 15 | 16 | 17 | 18 | tester 19 | CA 20 | 21 | 22 | 23 | manager 24 | FL 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/androidTest/java/com/example/hussienalrubaye/seekbar/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.example.hussienalrubaye.seekbar; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /Alaram App/app/src/test/java/com/alrubaye/alaram/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.alrubaye.alaram; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /MyTracker/app/src/test/java/com/alrubaye/mytracker/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.alrubaye.mytracker; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/test/java/com/alrubaye/twitterdem/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.alrubaye.twitterdem; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /CitySunsetTime/app/src/test/java/com/hussienalrubaye/services/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.hussienalrubaye.services; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.1.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/test/java/com/alrubaye/twitterdem/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.alrubaye.twitterdem; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /MyCurrentLocationApp/app/src/test/java/com/hussein/mycurrentlocation/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.hussein.mycurrentlocation; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/java/com/hussienalrubaye/androiddemowork/AdapterItems.java: -------------------------------------------------------------------------------- 1 | package com.hussienalrubaye.androiddemowork; 2 | 3 | /** 4 | * Created by hussienalrubaye on 9/8/16. 5 | */ 6 | 7 | public class AdapterItems 8 | { 9 | public int ID; 10 | public String UserName; 11 | public String Password; 12 | //for news details 13 | AdapterItems( int ID, String UserName,String Password) 14 | { 15 | this. ID=ID; 16 | this. UserName=UserName; 17 | this. Password=Password; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/test/java/com/hussienalrubaye/phplogin/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.hussienalrubaye.phplogin; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/test/java/com/hussein/tictactoylocal/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.hussein.tictactoylocal; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/test/java/com/hussein/tictactoyonline/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.hussein.tictactoyonline; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/java/com/hussienalrubaye/phplogin/AdapterItems.java: -------------------------------------------------------------------------------- 1 | package com.hussienalrubaye.phplogin; 2 | 3 | /** 4 | * Created by hussienalrubaye on 9/9/16. 5 | */ 6 | 7 | // adapter class 8 | public class AdapterItems 9 | { 10 | public int ID; 11 | public String UserName; 12 | public String Password; 13 | //for news details 14 | AdapterItems( int ID, String UserName,String Password) 15 | { 16 | this. ID=ID; 17 | this. UserName=UserName; 18 | this. Password=Password; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/test/java/com/hussein/mycurrentlocation/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.hussein.mycurrentlocation; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/test/java/com/hussienalrubaye/androiddemowork/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.hussienalrubaye.androiddemowork; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /TwitterApp/README.md: -------------------------------------------------------------------------------- 1 | ##Twitter AAP. 2 | ###This app is social media app that allows people to share their photos,status, and follow other people.. 3 | ####The complete tutorial how to build it is on [UDEMY Android 7](https://www.udemy.com/android-tutorial-for-beginners/?instructorPreviewMode=guest) 4 | 5 | 6 | 7 | ![main](http://attach.alruabye.net/androidTutorialForBeginners/tweeterapp/login.png) 8 | 9 | 10 | ![main](http://attach.alruabye.net/androidTutorialForBeginners/tweeterapp/tweet1.png) 11 | 12 | ![main](http://attach.alruabye.net/androidTutorialForBeginners/tweeterapp/tweet2.png) 13 | 14 | -------------------------------------------------------------------------------- /string.txt: -------------------------------------------------------------------------------- 1 | 2 | 1- lyaout 3 | 4 | localization 5 | Home 6 | Welcome 7 | 8 | 9 | name 10 | name 11 | name 12 | 13 | 14 | 15 | 16 | 17 | 2- code 18 | 19 | 20 | String msg=getResources().getString(R.string.mgs); 21 | Toast.makeText(this,msg,Toast.LENGTH_LONG).show(); 22 | String[] myarray=getResources().getStringArray(R.array.myarray); -------------------------------------------------------------------------------- /Alaram App/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.2' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /MyTracker/README.md: -------------------------------------------------------------------------------- 1 | ##Find my phone is app on [Google Play](https://play.google.com/store/apps/details?id=phonelocation.example.asuss550c.phonelocationphone) 2 | Find my phone Will help you to track unlimited number of phones in online mode. 3 | Today you do not need to worry, if the phone is no longer have internet connection 4 | 5 | 6 | 7 | ![main](http://attach.alruabye.net/androidTutorialForBeginners/familyfinder1.png) 8 | 9 | 10 | ![main](http://attach.alruabye.net/androidTutorialForBeginners/familyfinder2.png) 11 | 12 | ![main](http://attach.alruabye.net/androidTutorialForBeginners/familyfinder.png) 13 | 14 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 14 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /CitySunsetTime/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.0-rc1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 14 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.0-rc1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /Alaram App/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.4.0-alpha7' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /MyTracker/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.0-rc1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /TwitterApp/TwitterServer/Register.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CitySunsetTime/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.4.0-alpha7' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.4.0-alpha7' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /TwitterApp/TwitterServer/TweetAdd.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /FindMyPhone Assets/menu/menu_contact_list.xml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/layout/tweet_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/src/main/java/com/example/hussienalrubaye/seekbar/SongInfo.java: -------------------------------------------------------------------------------- 1 | package com.example.hussienalrubaye.seekbar; 2 | 3 | /** 4 | * Created by hussienalrubaye on 9/13/15. 5 | */ 6 | public class SongInfo { 7 | public String Path; 8 | public String song_name; 9 | public String album_name; 10 | public String artist_name; 11 | public SongInfo(String Path,String song_name,String album_name, 12 | String artist_name){ 13 | this.Path=Path; 14 | this.song_name=song_name; 15 | this.album_name=album_name; 16 | this.artist_name=artist_name; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/layout/tweet_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/menu/menu_contact_list.xml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /FindMyPhone Assets/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /MyTracker/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.0' 9 | classpath 'com.google.gms:google-services:3.0.0' 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /FindMyPhone Assets/layout/news_ticket_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 14 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/layout/news_ticket_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 14 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.2' 9 | classpath 'com.google.gms:google-services:3.0.0' 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.2' 9 | classpath 'com.google.gms:google-services:3.0.0' 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.4.0-alpha7' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | classpath 'com.google.gms:google-services:3.0.0' 13 | } 14 | } 15 | 16 | allprojects { 17 | repositories { 18 | jcenter() 19 | } 20 | } 21 | 22 | task clean(type: Delete) { 23 | delete rootProject.buildDir 24 | } 25 | -------------------------------------------------------------------------------- /TwitterApp/TwitterServer/IsFollowing.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyCurrentLocationApp/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /SharedPreferences.java: -------------------------------------------------------------------------------- 1 | public class SharedRef { 2 | SharedPreferences ShredRef; 3 | 4 | public SharedRef(Context context){ 5 | ShredRef=context.getSharedPreferences("myRef",Context.MODE_PRIVATE); 6 | } 7 | 8 | public void SaveData(String UserName,String Password){ 9 | SharedPreferences.Editor editor=ShredRef.edit(); 10 | editor.putString("UserName",UserName); 11 | editor.putString("Password",Password); 12 | editor.commit(); 13 | } 14 | 15 | public String LoadData(){ 16 | String FileContent="UserName:"+ShredRef.getString("UserName","No name"); 17 | FileContent+=",Password:"+ShredRef.getString("Password","No Password"); 18 | return FileContent; 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.0" 6 | 7 | defaultConfig { 8 | applicationId "com.example.hussienalrubaye.seekbar" 9 | minSdkVersion 15 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | compile 'com.android.support:appcompat-v7:23.0.0' 25 | } 26 | -------------------------------------------------------------------------------- /Alaram App/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/hussienalrubaye/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /MyTracker/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/hussienalrubaye/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /CitySunsetTime/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/hussienalrubaye/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /takePicture.txt: -------------------------------------------------------------------------------- 1 | 2 | // add permission 3 | 4 | 5 | 6 | 7 | //code 8 | void TakePicture(){ 9 | Intent intent= new Intent(); 10 | intent.setAction(MediaStore.ACTION_IMAGE_CAPTURE); 11 | startActivityForResult(intent,tag); 12 | } 13 | @Override 14 | protected void onActivityResult(int requestCode, int resultCode,Intent data){ 15 | if (requestCode==tag && resultCode==RESULT_OK){ 16 | Bundle b=data.getExtras(); 17 | Bitmap img=(Bitmap)b.get("data"); 18 | imageView.setImageBitmap(img); 19 | 20 | } 21 | } -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/hussienalrubaye/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /handle.java: -------------------------------------------------------------------------------- 1 | 2 | myhandler handler =new myhandler(); 3 |                 // Create Inner Thread Class 4 | class background extends Thread 5 | { 6 |  public void run() 7 | {                   8 | Message msgObj = handler.obtainMessage(); 9 | Bundle b = new Bundle(); 10 | b.putString("message", msg); 11 | msgObj.setData(b); 12 | handler.sendMessage(msgObj);   13 |  } 14 | 15 | } 16 |   17 |   18 | // Define the Handler that receives messages from the thread and update the progress 19 | class myhandler extends Handler { 20 |  public void handleMessage(Message msg) { 21 |                             if ((null != msg))    22 |                             String aResponse = msg.getData().getString("message"); 23 |   24 |                         } 25 |                     } 26 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/hussienalrubaye/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/java/com/alrubaye/mytracker/StartOs.java: -------------------------------------------------------------------------------- 1 | package com.alrubaye.mytracker; 2 | 3 | import android.content.BroadcastReceiver; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | import android.location.LocationManager; 7 | 8 | /** 9 | * Created by hussienalrubaye on 10/3/16. 10 | */ 11 | 12 | public class StartOs extends BroadcastReceiver { 13 | @Override 14 | public void onReceive(Context context, Intent intent) { 15 | 16 | if (intent.getAction().equalsIgnoreCase("android.intent.action.BOOT_COMPLETED")){ 17 | 18 | 19 | /// only when system start 20 | Intent intentService=new Intent(context,MyServie.class); 21 | context. startService(intentService); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/hussienalrubaye/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/hussienalrubaye/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/hussienalrubaye/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /PHP Webservice/phpAndroid/add.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Alaram App/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Alaram App/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /MyTracker/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /MyTracker/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /CitySunsetTime/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /CitySunsetTime/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /MediaPlayerAndroidExample/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/layout/activity_my_trackers.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 18 | 19 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /PHP Webservice/phpAndroid/tracking.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /MyTracker/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /Alaram App/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /CitySunsetTime/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /PhpMySqlQuery.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web Services/phpMySql.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AlertDialog.java: -------------------------------------------------------------------------------- 1 | AlertDialog.Builder alert= new AlertDialog.Builder(this); 2 | alert.setMessage("are you sure to delete") 3 | .setIcon(android.R.drawable.stat_notify_error) 4 | .setTitle("Alert") 5 | .setPositiveButton("Yes", new DialogInterface.OnClickListener() { 6 | @Override 7 | public void onClick(DialogInterface dialog, int which) { 8 | //do some thing 9 | } 10 | }) 11 | .setNegativeButton("No", new DialogInterface.OnClickListener() { 12 | @Override 13 | public void onClick(DialogInterface dialog, int which) { 14 | //do some thing 15 | } 16 | }).show(); -------------------------------------------------------------------------------- /MyCurrentLocationApp/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /SqliteDBAndroidExample/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /TwitterApp/TwitterServer/UserFollowing.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /PHP Webservice/phpAndroid/list.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyLocal2/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /TicTacToyGame/TicTacToyOnline/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /TwitterApp/TwitterServer/login.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pockemon/MyCurrentLocationApp/app/src/main/java/com/hussein/mycurrentlocation/Pockemon.java: -------------------------------------------------------------------------------- 1 | package com.hussein.mycurrentlocation; 2 | 3 | import android.location.Location; 4 | 5 | /** 6 | * Created by hussienalrubaye on 5/8/17. 7 | */ 8 | 9 | public class Pockemon { 10 | public int Image; 11 | public String name; 12 | public String des; 13 | public double power; 14 | public boolean isCatch; 15 | public Location location; 16 | 17 | Pockemon(int Image,String name,String des,double power, double lat, double lag){ 18 | this.Image=Image; 19 | this.name=name; 20 | this.des=des; 21 | this.power=power; 22 | this.isCatch=false; 23 | location= new Location(name); 24 | location.setLongitude(lag); 25 | location.setLatitude(lat); 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /CitySunsetTime/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /FindMyPhone Assets/Assets/backgroundwhite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /FindMyPhone Assets/layout/news_ticket_no_news.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 20 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/drawable/backgroundwhite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /MyTracker/app/src/main/res/layout/news_ticket_no_news.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 20 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDem/app/src/main/res/layout/tweet_msg.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 20 | -------------------------------------------------------------------------------- /TwitterApp/TwitterDemStart/app/src/main/res/layout/tweet_msg.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 20 | -------------------------------------------------------------------------------- /liveCycle.java: -------------------------------------------------------------------------------- 1 | protected void onStart(){ 2 | super.onStart(); 3 | Toast.makeText(this,"OnStart",Toast.LENGTH_LONG).show(); 4 | } 5 | 6 | protected void onRestart(){ 7 | super.onRestart(); 8 | Toast.makeText(this,"onRestart",Toast.LENGTH_LONG).show(); 9 | } 10 | 11 | protected void onResume(){ 12 | super.onResume(); 13 | Toast.makeText(this,"onResume",Toast.LENGTH_LONG).show(); 14 | } 15 | 16 | protected void onPause(){ 17 | super.onPause(); 18 | Toast.makeText(this,"onPause",Toast.LENGTH_LONG).show(); 19 | } 20 | 21 | protected void onStop(){ 22 | super.onStop(); 23 | Toast.makeText(this,"onStop",Toast.LENGTH_LONG).show(); 24 | } 25 | 26 | protected void onDestroy(){ 27 | super.onDestroy(); 28 | Toast.makeText(this,"onDestroy",Toast.LENGTH_LONG).show(); 29 | } -------------------------------------------------------------------------------- /PHP Webservice/AndroidAPP/app/src/main/res/layout/layout_ticket.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 11 | 12 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /Alaram App/app/src/main/res/layout/pop_time.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 13 | 14 | 18 | 19 |