Trying to implement weather information app. This is hard...
authorgu.martinm@gmail.com <gu.martinm@gmail.com>
Sat, 19 Apr 2014 15:16:31 +0000 (17:16 +0200)
committergu.martinm@gmail.com <gu.martinm@gmail.com>
Sat, 19 Apr 2014 15:16:31 +0000 (17:16 +0200)
commit3b397362e9b7a2004f4b76268d501614b1f3951d
treed3b72e981cdb24891a680358e4c6f9e8307f3a44
parentb6eacb407ba75aab32da2ed3edc719c0072630e8
Trying to implement weather information app. This is hard...
80 files changed:
AndroidManifest.xml
project.properties
res/drawable-hdpi/ic_02d.png [deleted file]
res/drawable-hdpi/thermometer.png [new file with mode: 0644]
res/drawable-hdpi/weather_clear.png [new file with mode: 0644]
res/drawable-hdpi/weather_clear_night.png [new file with mode: 0644]
res/drawable-hdpi/weather_few_clouds.png [new file with mode: 0644]
res/drawable-hdpi/weather_few_clouds_night.png [new file with mode: 0644]
res/drawable-hdpi/weather_fog.png [new file with mode: 0644]
res/drawable-hdpi/weather_overcast.png [new file with mode: 0644]
res/drawable-hdpi/weather_severe_alert.png [new file with mode: 0644]
res/drawable-hdpi/weather_showers.png [new file with mode: 0644]
res/drawable-hdpi/weather_showers_scattered.png [new file with mode: 0644]
res/drawable-hdpi/weather_snow.png [new file with mode: 0644]
res/drawable-hdpi/weather_storm.png [new file with mode: 0644]
res/drawable-mdpi/ic_02d.png [deleted file]
res/drawable-mdpi/thermometer.png [new file with mode: 0644]
res/drawable-mdpi/weather_clear.png [new file with mode: 0644]
res/drawable-mdpi/weather_clear_night.png [new file with mode: 0644]
res/drawable-mdpi/weather_few_clouds.png [new file with mode: 0644]
res/drawable-mdpi/weather_few_clouds_night.png [new file with mode: 0644]
res/drawable-mdpi/weather_fog.png [new file with mode: 0644]
res/drawable-mdpi/weather_overcast.png [new file with mode: 0644]
res/drawable-mdpi/weather_severe_alert.png [new file with mode: 0644]
res/drawable-mdpi/weather_showers.png [new file with mode: 0644]
res/drawable-mdpi/weather_showers_scattered.png [new file with mode: 0644]
res/drawable-mdpi/weather_snow.png [new file with mode: 0644]
res/drawable-mdpi/weather_storm.png [new file with mode: 0644]
res/drawable-xhdpi/ic_02d.png [deleted file]
res/drawable-xhdpi/thermometer.png [new file with mode: 0644]
res/drawable-xhdpi/weather_clear.png [new file with mode: 0644]
res/drawable-xhdpi/weather_clear_night.png [new file with mode: 0644]
res/drawable-xhdpi/weather_few_clouds.png [new file with mode: 0644]
res/drawable-xhdpi/weather_few_clouds_night.png [new file with mode: 0644]
res/drawable-xhdpi/weather_fog.png [new file with mode: 0644]
res/drawable-xhdpi/weather_overcast.png [new file with mode: 0644]
res/drawable-xhdpi/weather_severe_alert.png [new file with mode: 0644]
res/drawable-xhdpi/weather_showers.png [new file with mode: 0644]
res/drawable-xhdpi/weather_showers_scattered.png [new file with mode: 0644]
res/drawable-xhdpi/weather_snow.png [new file with mode: 0644]
res/drawable-xhdpi/weather_storm.png [new file with mode: 0644]
res/drawable-xxhdpi/ic_02d.png [deleted file]
res/drawable-xxhdpi/thermometer.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_clear.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_clear_night.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_few_clouds.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_few_clouds_night.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_fog.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_overcast.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_severe_alert.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_showers.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_showers_scattered.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_snow.png [new file with mode: 0644]
res/drawable-xxhdpi/weather_storm.png [new file with mode: 0644]
res/layout/activity_masterdetail_detail.xml [new file with mode: 0644]
res/layout/activity_masterdetail_list.xml [new file with mode: 0644]
res/layout/activity_masterdetail_twopane.xml [new file with mode: 0644]
res/layout/activity_test_scroll.xml [new file with mode: 0644]
res/layout/fragment_masterdetail_detail.xml [new file with mode: 0644]
res/layout/fragment_test_scroll.xml [new file with mode: 0644]
res/layout/weather_main_entry_list.xml
res/menu/test_scroll.xml [new file with mode: 0644]
res/menu/weather_main_menu.xml
res/values-large/refs.xml [new file with mode: 0644]
res/values-sw600dp/refs.xml [new file with mode: 0644]
res/values/strings.xml
res/values/styles.xml
src/de/example/exampletdd/MasterDetailDetailActivity.java [new file with mode: 0644]
src/de/example/exampletdd/MasterDetailDetailFragment.java [new file with mode: 0644]
src/de/example/exampletdd/MasterDetailListActivity.java [new file with mode: 0644]
src/de/example/exampletdd/MasterDetailListFragment.java [new file with mode: 0644]
src/de/example/exampletdd/TestScrollActivity.java [new file with mode: 0644]
src/de/example/exampletdd/WeatherInformationActivity.java
src/de/example/exampletdd/WeatherInformationSpecificDataActivity.java
src/de/example/exampletdd/dummy/DummyContent.java [new file with mode: 0644]
src/de/example/exampletdd/fragment/overview/IconsList.java [new file with mode: 0644]
src/de/example/exampletdd/fragment/overview/WeatherInformationOverviewFragment.java
src/de/example/exampletdd/fragment/overview/WeatherOverviewAdapter.java
src/de/example/exampletdd/fragment/overview/WeatherOverviewEntry.java
src/de/example/exampletdd/fragment/specific/WeatherInformationSpecificDataFragment.java