├── .gitignore ├── app-release.apk ├── src ├── main │ ├── assets │ │ ├── wip.gif │ │ └── wip.html │ ├── ic_launcher-web.png │ ├── res │ │ ├── drawable │ │ │ ├── mgd.gif │ │ │ ├── soil.jpg │ │ │ ├── wip.gif │ │ │ ├── level.jpg │ │ │ ├── mappic.jpg │ │ │ ├── water.jpg │ │ │ ├── mappicon.jpg │ │ │ ├── moisture.jpg │ │ │ ├── mwelcome.gif │ │ │ ├── smarthome.jpg │ │ │ ├── hbackground.jpg │ │ │ ├── smarthome2.jpg │ │ │ ├── temperature.jpg │ │ │ └── finalhumidity.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-hdpi │ │ │ ├── ic_info_black_24dp.png │ │ │ ├── ic_sync_black_24dp.png │ │ │ └── ic_notifications_black_24dp.png │ │ ├── drawable-mdpi │ │ │ ├── ic_info_black_24dp.png │ │ │ ├── ic_sync_black_24dp.png │ │ │ └── ic_notifications_black_24dp.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_info_black_24dp.png │ │ │ ├── ic_sync_black_24dp.png │ │ │ └── ic_notifications_black_24dp.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_info_black_24dp.png │ │ │ ├── ic_sync_black_24dp.png │ │ │ └── ic_notifications_black_24dp.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_info_black_24dp.png │ │ │ ├── ic_sync_black_24dp.png │ │ │ └── ic_notifications_black_24dp.png │ │ ├── layout │ │ │ ├── content_experiment2.xml │ │ │ ├── content_client.xml │ │ │ ├── content_calender_test.xml │ │ │ ├── content_animation_gif.xml │ │ │ ├── fragment_two.xml │ │ │ ├── fragment_three.xml │ │ │ ├── fragment_one.xml │ │ │ ├── content_todo.xml │ │ │ ├── item_todo.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_todo.xml │ │ │ ├── activity_client.xml │ │ │ ├── activity_ip.xml │ │ │ ├── activity_pid.xml │ │ │ ├── activity_tab.xml │ │ │ ├── activity_level.xml │ │ │ ├── activity_main2.xml │ │ │ ├── activity_main3.xml │ │ │ ├── activity_main4.xml │ │ │ ├── activity_main22.xml │ │ │ ├── activity_experiment.xml │ │ │ ├── activity_experiment2.xml │ │ │ ├── activity_humidity.xml │ │ │ ├── activity_moisture.xml │ │ │ ├── activity_voice_help.xml │ │ │ ├── activity_animation_gif.xml │ │ │ ├── activity_calender_test.xml │ │ │ ├── activity_new_socket.xml │ │ │ ├── activity_parameter.xml │ │ │ ├── activity_raspberry_pi.xml │ │ │ ├── content_new_socket.xml │ │ │ ├── activity_temperature.xml │ │ │ ├── activity_outputcontrol.xml │ │ │ ├── content_tab.xml │ │ │ ├── content_moisture.xml │ │ │ ├── content_humidity.xml │ │ │ ├── content_level.xml │ │ │ ├── content_pid.xml │ │ │ ├── content_main3.xml │ │ │ ├── activity_fan_speed.xml │ │ │ ├── activity_brightness_activity.xml │ │ │ ├── content_main22.xml │ │ │ ├── content_experiment.xml │ │ │ ├── content_ip.xml │ │ │ ├── content_temperature.xml │ │ │ ├── content_parameter.xml │ │ │ ├── content_main.xml │ │ │ ├── content_outputcontrol.xml │ │ │ ├── content_main4.xml │ │ │ └── content_raspberry_pi.xml │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── attrs.xml │ │ │ └── styles.xml │ │ ├── values-v21 │ │ │ └── styles.xml │ │ ├── menu │ │ │ ├── menu_main.xml │ │ │ ├── menu_tab.xml │ │ │ └── menu_voice_help.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ ├── drawable-v21 │ │ │ ├── ic_info_black_24dp.xml │ │ │ ├── ic_notifications_black_24dp.xml │ │ │ └── ic_sync_black_24dp.xml │ │ └── xml │ │ │ ├── pref_headers.xml │ │ │ ├── pref_data_sync.xml │ │ │ ├── pref_notification.xml │ │ │ └── pref_general.xml │ ├── java │ │ └── com │ │ │ └── mithu │ │ │ └── mithunmistry │ │ │ └── mithun │ │ │ ├── Point.java │ │ │ ├── OneFragment.java │ │ │ ├── TwoFragment.java │ │ │ ├── ThreeFragment.java │ │ │ ├── animationGif.java │ │ │ ├── PagerAdapter.java │ │ │ ├── todo.java │ │ │ ├── calenderTest.java │ │ │ ├── VoiceHelp.java │ │ │ ├── Main4Activity.java │ │ │ ├── ParameterActivity.java │ │ │ ├── LineGraph.java │ │ │ ├── NewSocketActivity.java │ │ │ ├── MockData.java │ │ │ ├── MainActivity.java │ │ │ ├── PidActivity.java │ │ │ ├── MoistureActivity.java │ │ │ ├── LevelActivity.java │ │ │ ├── TabActivity.java │ │ │ ├── HumidityActivity.java │ │ │ ├── Main22Activity.java │ │ │ ├── experiment2.java │ │ │ ├── TemperatureActivity.java │ │ │ └── brightness_activity.java │ └── AndroidManifest.xml ├── test │ └── java │ │ └── com │ │ └── example │ │ └── mithunmistry │ │ └── mithun │ │ └── ExampleUnitTest.java └── androidTest │ └── java │ └── com │ └── mithu │ └── mithunmistry │ └── mithun │ └── ApplicationTest.java ├── libs └── achartengine-1.0.0.jar ├── proguard-rules.pro └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/app-release.apk -------------------------------------------------------------------------------- /src/main/assets/wip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/assets/wip.gif -------------------------------------------------------------------------------- /libs/achartengine-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/libs/achartengine-1.0.0.jar -------------------------------------------------------------------------------- /src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /src/main/res/drawable/mgd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/mgd.gif -------------------------------------------------------------------------------- /src/main/res/drawable/soil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/soil.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/wip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/wip.gif -------------------------------------------------------------------------------- /src/main/res/drawable/level.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/level.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/mappic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/mappic.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/water.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/mappicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/mappicon.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/moisture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/moisture.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/mwelcome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/mwelcome.gif -------------------------------------------------------------------------------- /src/main/res/drawable/smarthome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/smarthome.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/hbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/hbackground.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/smarthome2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/smarthome2.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/temperature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/temperature.jpg -------------------------------------------------------------------------------- /src/main/res/drawable/finalhumidity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable/finalhumidity.jpg -------------------------------------------------------------------------------- /src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/assets/wip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-hdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_sync_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-hdpi/ic_sync_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-mdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_sync_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-mdpi/ic_sync_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-xhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_sync_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-xhdpi/ic_sync_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_sync_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-xxhdpi/ic_sync_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_sync_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-xxxhdpi/ic_sync_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-hdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-hdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-mdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-mdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xhdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-xhdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxhdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-xxhdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/drawable-xxxhdpi/ic_notifications_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mithunjmistry/IOT-Raspberry-Pi-Android-App/HEAD/src/main/res/drawable-xxxhdpi/ic_notifications_black_24dp.png -------------------------------------------------------------------------------- /src/main/res/layout/content_experiment2.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | #66000000 8 | 9 | -------------------------------------------------------------------------------- /src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | > 2 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /src/main/res/menu/menu_tab.xml: -------------------------------------------------------------------------------- 1 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/res/menu/menu_voice_help.xml: -------------------------------------------------------------------------------- 1 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /src/test/java/com/example/mithunmistry/mithun/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.mithu.mithunmistry.mithun; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 180dp 7 | 16dp 8 | 8dp 9 | 10 | -------------------------------------------------------------------------------- /src/androidTest/java/com/mithu/mithunmistry/mithun/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.mithu.mithunmistry.mithun; 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 | } -------------------------------------------------------------------------------- /src/main/res/drawable-v21/ic_info_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/java/com/mithu/mithunmistry/mithun/Point.java: -------------------------------------------------------------------------------- 1 | package com.mithu.mithunmistry.mithun; 2 | 3 | /** 4 | * Created by Mithun Mistry on 27-04-2016. 5 | */ 6 | public class Point { 7 | 8 | private int x; 9 | private int y; 10 | 11 | public Point( int x, int y) 12 | { 13 | this.x = x; 14 | this.y = y; 15 | } 16 | 17 | public int getX() { 18 | return x; 19 | } 20 | 21 | public int getY() { 22 | return y; 23 | } 24 | 25 | } -------------------------------------------------------------------------------- /src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/res/drawable-v21/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/res/drawable-v21/ic_sync_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /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 C:\Android/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 | -------------------------------------------------------------------------------- /src/main/res/layout/content_client.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/res/layout/content_calender_test.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/res/layout/content_animation_gif.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IOT-Raspberry-Pi-Android-App 2 | IOT Raspberry Pi android application available for download at - https://play.google.com/store/apps/details?id=com.mithu.mithunmistry.mithun&hl=en 3 | 4 | Watch the videos at - 5 | Raspberry Pi to Android : https://youtu.be/x7LvRoGbaDc 6 | Home Automation project : https://youtu.be/UxJIQw1Ubi8 7 | 8 | Modify the app as per need for your project. This is an open-source project meant for people to learn. Using it for commercial project is 9 | strictly prohibited and can incur legal action. This is free to use for educational purpose only. 10 | 11 | * This App was made from October-2015 till June-2016 and is no longer maintained. 12 | * If we want to use ready made library, see my Socket.IO-Usage-Demo-Android repository - https://github.com/mithunjmistry/Socket.IO-Usage-Demo-Android 13 | -------------------------------------------------------------------------------- /src/main/res/layout/fragment_two.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 8 | 9 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/res/layout/fragment_three.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 9 | 10 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/res/layout/fragment_one.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 14 | 15 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/main/res/xml/pref_headers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
8 | 9 |
13 | 14 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/res/layout/content_todo.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/res/layout/item_todo.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 |