├── .gitignore ├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── scopes │ └── scope_settings.xml ├── ant.xml ├── encodings.xml ├── vcs.xml ├── modules.xml ├── misc.xml ├── compiler.xml ├── uiDesigner.xml └── workspace.xml ├── out ├── production │ └── Quorum │ │ ├── Quorum.apk │ │ ├── classes.dex │ │ ├── Quorum.apk.res │ │ ├── Quorum.apk.unaligned │ │ └── com │ │ └── example │ │ ├── R.class │ │ ├── Entry.class │ │ ├── R$id.class │ │ ├── Util.class │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── HomeActivity.class │ │ ├── JournalActivity.class │ │ ├── DailyBestActivity.class │ │ ├── TodaysJournalActivity.class │ │ └── TodaysJournalActivity$1.class └── res-cache │ └── Quorum │ └── drawable │ ├── ic_tab_journal_grey.png │ ├── ic_tab_journal_white.png │ ├── ic_tab_daily_best_grey.png │ ├── ic_tab_daily_best_white.png │ ├── ic_tab_todays_journal_grey.png │ └── ic_tab_todays_journal_white.png ├── res ├── drawable │ ├── ic_tab_journal_grey.png │ ├── ic_tab_journal_white.png │ ├── ic_tab_daily_best_grey.png │ ├── ic_tab_daily_best_white.png │ ├── ic_tab_todays_journal_grey.png │ ├── ic_tab_todays_journal_white.png │ ├── ic_tab_journal.xml │ ├── ic_tab_daily_best.xml │ └── ic_tab_todays_journal.xml ├── layout │ ├── notes_row.xml │ ├── journal.xml │ ├── main.xml │ └── notes_edit.xml └── values │ └── strings.xml ├── src └── com │ └── example │ ├── Entry.java │ ├── DailyBestActivity.java │ ├── TodaysJournalActivity.java │ ├── HomeActivity.java │ ├── JournalActivity.java │ └── Util.java ├── project.properties ├── README ├── local.properties ├── ant.properties ├── AndroidManifest.xml ├── proguard.cfg ├── Quorum.iml └── gen └── com └── example └── R.java /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Quorum -------------------------------------------------------------------------------- /out/production/Quorum/Quorum.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/Quorum.apk -------------------------------------------------------------------------------- /out/production/Quorum/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/classes.dex -------------------------------------------------------------------------------- /out/production/Quorum/Quorum.apk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/Quorum.apk.res -------------------------------------------------------------------------------- /res/drawable/ic_tab_journal_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/res/drawable/ic_tab_journal_grey.png -------------------------------------------------------------------------------- /res/drawable/ic_tab_journal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/res/drawable/ic_tab_journal_white.png -------------------------------------------------------------------------------- /res/drawable/ic_tab_daily_best_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/res/drawable/ic_tab_daily_best_grey.png -------------------------------------------------------------------------------- /res/drawable/ic_tab_daily_best_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/res/drawable/ic_tab_daily_best_white.png -------------------------------------------------------------------------------- /out/production/Quorum/Quorum.apk.unaligned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/Quorum.apk.unaligned -------------------------------------------------------------------------------- /out/production/Quorum/com/example/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/R.class -------------------------------------------------------------------------------- /out/production/Quorum/com/example/Entry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/Entry.class -------------------------------------------------------------------------------- /out/production/Quorum/com/example/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/R$id.class -------------------------------------------------------------------------------- /out/production/Quorum/com/example/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/Util.class -------------------------------------------------------------------------------- /res/drawable/ic_tab_todays_journal_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/res/drawable/ic_tab_todays_journal_grey.png -------------------------------------------------------------------------------- /res/drawable/ic_tab_todays_journal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/res/drawable/ic_tab_todays_journal_white.png -------------------------------------------------------------------------------- /out/production/Quorum/com/example/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/R$attr.class -------------------------------------------------------------------------------- /out/production/Quorum/com/example/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/R$drawable.class -------------------------------------------------------------------------------- /out/production/Quorum/com/example/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/R$layout.class -------------------------------------------------------------------------------- /out/production/Quorum/com/example/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/R$string.class -------------------------------------------------------------------------------- /out/production/Quorum/com/example/HomeActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/HomeActivity.class -------------------------------------------------------------------------------- /out/production/Quorum/com/example/JournalActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/JournalActivity.class -------------------------------------------------------------------------------- /out/res-cache/Quorum/drawable/ic_tab_journal_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/res-cache/Quorum/drawable/ic_tab_journal_grey.png -------------------------------------------------------------------------------- /out/res-cache/Quorum/drawable/ic_tab_journal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/res-cache/Quorum/drawable/ic_tab_journal_white.png -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /out/production/Quorum/com/example/DailyBestActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/DailyBestActivity.class -------------------------------------------------------------------------------- /out/res-cache/Quorum/drawable/ic_tab_daily_best_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/res-cache/Quorum/drawable/ic_tab_daily_best_grey.png -------------------------------------------------------------------------------- /out/res-cache/Quorum/drawable/ic_tab_daily_best_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/res-cache/Quorum/drawable/ic_tab_daily_best_white.png -------------------------------------------------------------------------------- /out/res-cache/Quorum/drawable/ic_tab_todays_journal_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/res-cache/Quorum/drawable/ic_tab_todays_journal_grey.png -------------------------------------------------------------------------------- /out/production/Quorum/com/example/TodaysJournalActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/TodaysJournalActivity.class -------------------------------------------------------------------------------- /out/res-cache/Quorum/drawable/ic_tab_todays_journal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/res-cache/Quorum/drawable/ic_tab_todays_journal_white.png -------------------------------------------------------------------------------- /out/production/Quorum/com/example/TodaysJournalActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrshll/Quoraday/master/out/production/Quorum/com/example/TodaysJournalActivity$1.class -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/layout/notes_row.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Quoraday 4 | No notes 5 | Response 6 | Save 7 | Submit Response 8 | Delete Entry 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/ic_tab_journal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/com/example/Entry.java: -------------------------------------------------------------------------------- 1 | package com.example; 2 | 3 | import java.util.*; 4 | 5 | /** 6 | * Created by IntelliJ IDEA. 7 | * User: marshall 8 | * Date: 1/3/12 9 | * Time: 11:22 PM 10 | * To change this template use File | Settings | File Templates. 11 | */ 12 | public class Entry { 13 | public String question; 14 | public String text; 15 | public String date; 16 | public int votes; 17 | } 18 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-8 12 | -------------------------------------------------------------------------------- /res/drawable/ic_tab_daily_best.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/ic_tab_todays_journal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | QUORADAY 2 | ======== 3 | 4 | An android app that poses one question a day, pulled from the internet. Users 5 | can respond to the question, either publically or privately. Users can view 6 | posts of the day and 'star' them. Top starred responses of the day can be 7 | viewed by the user. 8 | 9 | All user responses are stored in a mysql database and pulled upon request. 10 | 11 | A lot of work needs to be done to make all functionality. 12 | -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must *NOT* be checked in Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/home/marshall/Desktop/android-sdk-linux 11 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | http://www.w3.org/1999/xhtml 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /res/layout/journal.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /src/com/example/DailyBestActivity.java: -------------------------------------------------------------------------------- 1 | package com.example; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.widget.TextView; 6 | 7 | /** 8 | * Created by IntelliJ IDEA. 9 | * User: marshall 10 | * Date: 12/21/11 11 | * Time: 5:14 PM 12 | * To change this template use File | Settings | File Templates. 13 | */ 14 | public class DailyBestActivity extends Activity { 15 | public void onCreate(Bundle savedInstanceState) { 16 | super.onCreate(savedInstanceState); 17 | 18 | TextView textview = new TextView(this); 19 | textview.setText("This is the Daily Best tab"); 20 | setContentView(textview); 21 | } 22 | } -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /ant.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 11 | 15 | 20 | 21 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /res/layout/notes_edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 10 | 11 | 16 | 17 | 18 | 22 | 23 |