├── .gitignore ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── assets ├── about.html ├── default.css └── libraries.html ├── ic_launcher-web.png ├── pom.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── default_post_image.png │ ├── default_user.png │ ├── ic_action_about.png │ ├── ic_action_edit.png │ ├── ic_action_overflow.png │ ├── ic_action_photo.png │ ├── ic_action_refresh.png │ ├── ic_action_search.png │ ├── ic_action_share.png │ ├── ic_compose.png │ ├── ic_launcher.png │ ├── ic_refresh.png │ ├── ic_search.png │ └── ic_social_chat.png ├── drawable-mdpi │ ├── default_post_image.png │ ├── default_user.png │ ├── ic_action_about.png │ ├── ic_action_edit.png │ ├── ic_action_overflow.png │ ├── ic_action_photo.png │ ├── ic_action_refresh.png │ ├── ic_action_search.png │ ├── ic_action_share.png │ ├── ic_compose.png │ ├── ic_launcher.png │ ├── ic_refresh.png │ ├── ic_search.png │ └── ic_social_chat.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable │ ├── image_border.xml │ └── line.xml ├── layout │ ├── activity_comment_list.xml │ ├── activity_post_detail.xml │ ├── activity_post_list.xml │ ├── activity_post_twopane.xml │ ├── comment_list_item.xml │ ├── dialog_make_comment.xml │ ├── dialog_submit_tip.xml │ ├── fragment_post_detail.xml │ ├── post_list_item.xml │ └── post_list_load_more.xml ├── menu │ ├── comment_list.xml │ ├── post_detail.xml │ └── post_list.xml ├── values-large │ └── refs.xml ├── values-small │ └── dimens.xml ├── values-sw600dp │ ├── dimens.xml │ └── refs.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── analytics.xml │ ├── arrays.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── ie └── broadsheet └── app ├── BaseFragmentActivity.java ├── BroadsheetApplication.java ├── CommentListActivity.java ├── PostDetailActivity.java ├── PostListActivity.java ├── adapters ├── CommentAdapter.java ├── PostListAdapter.java └── PostListEndlessAdapter.java ├── client └── http │ └── MultipartFormDataContent.java ├── dialog ├── AboutDialog.java ├── MakeCommentDialog.java ├── TipDialog.java └── WebViewDialog.java ├── fragments ├── PostDetailFragment.java └── PostListFragment.java ├── model └── json │ ├── AttachmentItem.java │ ├── Attachments.java │ ├── Author.java │ ├── Category.java │ ├── Comment.java │ ├── Image.java │ ├── Post.java │ ├── PostList.java │ ├── ResponseData.java │ ├── SinglePost.java │ ├── SubmitTipResponse.java │ └── Tag.java ├── requests ├── DownloadFileRequest.java ├── MakeCommentRequest.java ├── PostListRequest.java ├── PostRequest.java └── SubmitTipRequest.java └── services └── BroadsheetServices.java /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | 15 | # Local configuration file (sdk path, etc) 16 | local.properties 17 | 18 | # Eclipse project files 19 | *.pydevproject 20 | .project 21 | .metadata 22 | bin/** 23 | tmp/** 24 | tmp/**/* 25 | *.tmp 26 | *.bak 27 | *.swp 28 | *~.nib 29 | local.properties 30 | .classpath 31 | .settings/ 32 | .loadpath 33 | 34 | # External tool builders 35 | .externalToolBuilders/ 36 | 37 | # Locally stored "Eclipse launch configurations" 38 | *.launch 39 | 40 | # CDT-specific 41 | .cproject 42 | 43 | # PDT-specific 44 | .buildpath 45 | 46 | # Proguard folder generated by Eclipse 47 | proguard/ 48 | 49 | # Intellij project files 50 | *.iml 51 | *.ipr 52 | *.iws 53 | .idea/ 54 | 55 | #Mac OS X 56 | .DS_Store 57 | .AppleDouble 58 | .LSOverride 59 | Icon 60 | 61 | # Thumbnails 62 | ._* 63 | 64 | # Files that might appear on external disk 65 | .Spotlight-V100 66 | .Trashes 67 | 68 | # Windows image file caches 69 | Thumbs.db 70 | ehthumbs.db 71 | 72 | # Folder config file 73 | Desktop.ini 74 | 75 | # Recycle Bin used on file shares 76 | $RECYCLE.BIN/ 77 | /target 78 | 79 | res/values/com_crashlytics_export_strings.xml 80 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 23 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 36 | 37 | 41 | 44 | 45 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013 Karl Monaghan (http://karlmonaghan.com/) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Broadsheet.ie Android App 2 | =========== 3 | 4 | An Android app for displaying a WordPress blog, in this case Broadsheet.ie. This app uses a JSON feed produced by the [JSON API plugin](http://wordpress.org/extend/plugins/json-api/) (you'll need to use my [fork](https://github.com/kmonaghan/wp-json-api) though) and displays it in a reasonable manner. 5 | 6 | ## Libraries 7 | The app relies on the following libaries: 8 | 9 | [Action Bar Sherlock](http://actionbarsherlock.com/) 10 | 11 | [Android-PullToRefresh](https://github.com/chrisbanes/Android-PullToRefresh) 12 | 13 | [CWAC EndlessAdapter](https://github.com/commonsguy/cwac-endless) 14 | 15 | [RoboSpice](https://github.com/octo-online/robospice) (provided via Maven) 16 | 17 | [Universal Image Loader for Android](https://github.com/nostra13/Android-Universal-Image-Loader) (provided via Maven) 18 | 19 | ## Creator 20 | 21 | [Karl Monaghan](http://github.com/kmonaghan) 22 | [@karlmonaghan](https://twitter.com/karlmonaghan) 23 | 24 | ## License 25 | 26 | The Broadsheet.ie Android App is available under the MIT license. See the LICENSE file for more info. 27 | -------------------------------------------------------------------------------- /assets/about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | Broadsheet is a satirical news and popculture website from Ireland, featuring original and credited material, updated every 15 minutes from 9am to 5pm GMT. 6 |
7 |
8 | You can follow Broadsheet on Twitter and Facebook 9 |
10 |
11 |
12 |
13 | Privacy 14 |

15 | This app uses Google Anaytics to gather anonymized statistics about the usage of this app. This information does not contain any details about a user (e.g. email address or location). 16 |

17 |
18 |
19 | Development 20 |

21 | The app was developed by Karl Monaghan, a Dublin based iOS and Android developer. 22 |

23 |
24 |
25 | 26 | -------------------------------------------------------------------------------- /assets/default.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: Helvetica, Arial, sans-serif; 3 | -webkit-touch-callout: none; 4 | -webkit-user-select: none; 5 | margin: 10px; 6 | } 7 | 8 | h1 { 9 | font-size: 16px; 10 | font-weight: bold; 11 | } 12 | 13 | a:link { 14 | text-decoration: none 15 | } 16 | 17 | #title { 18 | display: block; 19 | font-size: 22px; 20 | font-weight: bold; 21 | } 22 | 23 | .title-color { 24 | 25 | } 26 | 27 | .date-color { 28 | color:#CC0000; 29 | } 30 | 31 | a.author:link, 32 | a.author:hover, 33 | a.author:active { 34 | color:#777; 35 | } 36 | 37 | #singlentry { 38 | 39 | } 40 | 41 | img.alignleft, img.alignright, img.aligncenter { 42 | 43 | } 44 | 45 | img { 46 | height: auto; 47 | max-width: 100%; 48 | } 49 | 50 | .entry-content img, .comment-content img, .widget img { 51 | max-width: 95%; 52 | } 53 | .aligncenter { 54 | clear: both; 55 | display: block; 56 | margin-left: auto; 57 | margin-right: auto; 58 | } 59 | 60 | .post object, .post embed, .post video, .post iframe { 61 | height: auto; 62 | 63 | max-width: 100% !important; 64 | } 65 | 66 | .category { 67 | float:left; 68 | margin:0 10px 7px 0; 69 | position:relative; 70 | font-family:'Helvetica Neue', Helvetica, Arial, sans-serif; 71 | font-size:0.75em; 72 | font-weight:bold; 73 | color:#996633; 74 | text-shadow:0px 1px 0px rgba(255,255,255,.4); 75 | padding: 5px; 76 | border:1px solid #d99d38; 77 | -webkit-border-radius:0.25em; 78 | 79 | border-radius:0.25em; 80 | background-image: -webkit-linear-gradient(top, rgb(254, 218, 113), rgb(254, 186, 71)); 81 | -webkit-box-shadow: 82 | inset 0 1px 0 #faeaba, 83 | 0 1px 1px rgba(0,0,0,.1); 84 | box-shadow: 85 | inset 0 1px 0 #faeaba, 86 | 0 1px 1px rgba(0,0,0,.1); 87 | z-index:100; 88 | } 89 | 90 | .tag { 91 | float:left; 92 | margin:0 10px 7px 0; 93 | position:relative; 94 | font-family:'Helvetica Neue', Helvetica, Arial, sans-serif; 95 | font-size:0.75em; 96 | font-weight:bold; 97 | color:#996633; 98 | text-shadow:0px 1px 0px rgba(255,255,255,.4); 99 | padding:0.417em; 100 | border:1px solid #d99d38; 101 | -webkit-border-radius:0.25em; 102 | 103 | border-radius:0.25em; 104 | background-image: -webkit-linear-gradient(top, rgb(254, 218, 113), rgb(254, 186, 71)); 105 | -webkit-box-shadow: 106 | inset 0 1px 0 #faeaba, 107 | 0 1px 1px rgba(0,0,0,.1); 108 | box-shadow: 109 | inset 0 1px 0 #faeaba, 110 | 0 1px 1px rgba(0,0,0,.1); 111 | z-index:100; 112 | } -------------------------------------------------------------------------------- /assets/libraries.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 |

Action Bar Sherlock

8 | Action Bar Sherlock
9 | Copyright (c) Jake Wharton
10 | Apache License
11 |
12 |

CWAC EndlessAdapter

13 | CWAC EndlessAdapter
14 | Copyright (c) 2008-2009 CommonsWare, LLC
15 | Apache License
16 |
17 |

Pull To Refresh Views for Android

18 | Android-PullToRefresh
19 | Copyright 2011, 2012 Chris Banes
20 | Apache License
21 |
22 |

RoboSpice

23 | RoboSpice
24 | Copyright (C) 2012 Octo Technology (http://www.octo.com)
25 | Apache License
26 |
27 |

Universal Image Loader for Android

28 | Universal Image Loader
29 | Copyright (c) 2011-2013 Sergey Tarasevich
30 | Apache License
31 |
32 |
33 | 34 | -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/ic_launcher-web.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | ie.broadsheet.app 4 | Broadsheet.ie-Android 5 | 0.0.1-SNAPSHOT 6 | apk 7 | SkillPages 8 | 9 | 10 | 4.1.1.4 11 | 1.4.5 12 | 1.15.0-rc 13 | 1.1.3 14 | 3.5.0 15 | 2.3.2 16 | 2.5 17 | 2.6 18 | 19 | 20 | 21 | 22 | com.google.android 23 | android 24 | ${android.version} 25 | provided 26 | 27 | 28 | com.octo.android.robospice 29 | robospice-google-http-client 30 | ${robospice.google.http.client.version} 31 | 32 | 33 | support-v4 34 | com.google.android 35 | 36 | 37 | 38 | 39 | com.google.http-client 40 | google-http-client-jackson 41 | ${google.http.client.version} 42 | 43 | 44 | xpp3 45 | xpp3 46 | 47 | 48 | stax 49 | stax-api 50 | 51 | 52 | 53 | 54 | commons-logging 55 | commons-logging 56 | ${commons.logging.version} 57 | provided 58 | 59 | 60 | com.nostra13.universalimageloader 61 | universal-image-loader 62 | 1.8.4 63 | 64 | 65 | 66 | 67 | ${project.artifactId} 68 | src 69 | 70 | 71 | 72 | true 73 | com.jayway.maven.plugins.android.generation2 74 | android-maven-plugin 75 | ${android-maven-plugin.version} 76 | 77 | ${project.basedir}/AndroidManifest.xml 78 | ${project.basedir}/assets 79 | ${project.basedir}/res 80 | ${project.basedir}/src/main/native 81 | 82 | 7 83 | 84 | true 85 | 86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /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 edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | android.library.reference.1=../ActionBarSherlock/actionbarsherlock 16 | android.library.reference.2=../cwac-endless 17 | android.library.reference.3=../../../Developer/adt/sdk/extras/google/google_play_services/libproject/google-play-services_lib 18 | android.library.reference.4=../Android-PullToRefresh/library 19 | -------------------------------------------------------------------------------- /res/drawable-hdpi/default_post_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/default_post_image.png -------------------------------------------------------------------------------- /res/drawable-hdpi/default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/default_user.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_action_about.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_action_edit.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_action_photo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_action_share.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_compose.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_social_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-hdpi/ic_social_chat.png -------------------------------------------------------------------------------- /res/drawable-mdpi/default_post_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/default_post_image.png -------------------------------------------------------------------------------- /res/drawable-mdpi/default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/default_user.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_action_about.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_action_edit.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_action_photo.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_action_share.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_compose.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_refresh.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_search.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_social_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-mdpi/ic_social_chat.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmonaghan/Broadsheet.ie-Android/21c36a8845b0d9c6173903205759ac6134b78dcc/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/image_border.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable/line.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /res/layout/activity_comment_list.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 15 | 16 | -------------------------------------------------------------------------------- /res/layout/activity_post_detail.xml: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /res/layout/activity_post_list.xml: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /res/layout/activity_post_twopane.xml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 23 | 24 | 31 | 32 | 37 | 38 | -------------------------------------------------------------------------------- /res/layout/comment_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 12 | 13 | 23 | 24 | 33 | 34 | 42 | 43 |