├── .gitignore ├── LICENSE ├── MyBlog ├── My Blog.iml ├── app │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── azhar │ │ │ └── myblog │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── azhar │ │ │ │ └── myblog │ │ │ │ ├── activities │ │ │ │ ├── AboutActivity.kt │ │ │ │ ├── DetailArtikelActivity.kt │ │ │ │ ├── DisclaimerActivity.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── PrivacyPolicyActivity.kt │ │ │ │ ├── adapter │ │ │ │ └── MainAdapter.java │ │ │ │ ├── model │ │ │ │ └── ModelMain.kt │ │ │ │ └── networking │ │ │ │ └── BloggerApi.kt │ │ └── res │ │ │ ├── drawable-anydpi │ │ │ └── ic_source.xml │ │ │ ├── drawable-hdpi │ │ │ └── ic_source.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_source.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ └── ic_source.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_source.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_about.png │ │ │ ├── ic_disclaimer.png │ │ │ ├── ic_privacy_policy.png │ │ │ └── ic_search.png │ │ │ ├── drawable │ │ │ ├── bg_circle_radius_white.xml │ │ │ ├── bg_curved.xml │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_detail_artikel.xml │ │ │ ├── activity_header.xml │ │ │ ├── activity_main.xml │ │ │ └── list_item_artikel.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.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 │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── azhar │ │ └── myblog │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 23 | hs_err_pid* 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /MyBlog/My Blog.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /MyBlog/app/app.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 13 | 26 | 27 | 28 | 29 | 30 | 32 | 33 | 47 | 60 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | -------------------------------------------------------------------------------- /MyBlog/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | apply plugin: 'kotlin-android' 4 | 5 | apply plugin: 'kotlin-android-extensions' 6 | 7 | android { 8 | compileSdkVersion 29 9 | buildToolsVersion "29.0.3" 10 | defaultConfig { 11 | applicationId "com.azhar.myblog" 12 | minSdkVersion 21 13 | targetSdkVersion 29 14 | versionCode 1 15 | versionName "1.0" 16 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 17 | } 18 | buildTypes { 19 | release { 20 | minifyEnabled false 21 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 22 | } 23 | } 24 | compileOptions { 25 | sourceCompatibility JavaVersion.VERSION_1_8 26 | targetCompatibility JavaVersion.VERSION_1_8 27 | } 28 | } 29 | 30 | dependencies { 31 | implementation fileTree(dir: 'libs', include: ['*.jar']) 32 | implementation 'androidx.appcompat:appcompat:1.1.0' 33 | implementation 'androidx.constraintlayout:constraintlayout:1.1.3' 34 | implementation 'androidx.cardview:cardview:1.0.0' 35 | implementation 'androidx.recyclerview:recyclerview:1.1.0' 36 | testImplementation 'junit:junit:4.13' 37 | androidTestImplementation 'androidx.test:runner:1.2.0' 38 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' 39 | 40 | implementation 'com.google.android.material:material:1.1.0' 41 | 42 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 43 | 44 | //Rest API FAN 45 | implementation 'com.amitshekhar.android:android-networking:1.0.2' 46 | 47 | //CircleImageView 48 | implementation 'com.mikhaellopez:circularimageview:4.2.0' 49 | 50 | //Glide 51 | implementation 'com.github.bumptech.glide:glide:4.11.0' 52 | annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0' 53 | 54 | //HTML Converter 55 | implementation 'org.jsoup:jsoup:1.10.3' 56 | 57 | } 58 | -------------------------------------------------------------------------------- /MyBlog/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /MyBlog/app/src/androidTest/java/com/azhar/myblog/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.azhar.myblog; 2 | 3 | import android.content.Context; 4 | 5 | import androidx.test.platform.app.InstrumentationRegistry; 6 | import androidx.test.ext.junit.runners.AndroidJUnit4; 7 | 8 | import org.junit.Test; 9 | import org.junit.runner.RunWith; 10 | 11 | import static org.junit.Assert.*; 12 | 13 | /** 14 | * Instrumented test, which will execute on an Android device. 15 | * 16 | * @see Testing documentation 17 | */ 18 | @RunWith(AndroidJUnit4.class) 19 | public class ExampleInstrumentedTest { 20 | @Test 21 | public void useAppContext() { 22 | // Context of the app under test. 23 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); 24 | 25 | assertEquals("com.azhar.myblog", appContext.getPackageName()); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/java/com/azhar/myblog/activities/AboutActivity.kt: -------------------------------------------------------------------------------- 1 | package com.azhar.myblog.activities 2 | 3 | import android.app.ProgressDialog 4 | import android.content.Intent 5 | import android.net.Uri 6 | import android.os.Build 7 | import android.os.Bundle 8 | import android.text.Html 9 | import android.view.MenuItem 10 | import android.view.View 11 | import android.widget.Toast 12 | import androidx.appcompat.app.AppCompatActivity 13 | import com.androidnetworking.AndroidNetworking 14 | import com.androidnetworking.common.Priority 15 | import com.androidnetworking.error.ANError 16 | import com.androidnetworking.interfaces.JSONObjectRequestListener 17 | import com.azhar.myblog.R 18 | import com.azhar.myblog.networking.BloggerApi 19 | import kotlinx.android.synthetic.main.activity_header.* 20 | import org.json.JSONException 21 | import org.json.JSONObject 22 | import java.text.ParseException 23 | import java.text.SimpleDateFormat 24 | 25 | class AboutActivity : AppCompatActivity() { 26 | 27 | var mProgressBar: ProgressDialog? = null 28 | 29 | override fun onCreate(savedInstanceState: Bundle?) { 30 | super.onCreate(savedInstanceState) 31 | setContentView(R.layout.activity_header) 32 | 33 | setSupportActionBar(toolbar) 34 | assert(supportActionBar != null) 35 | supportActionBar!!.setDisplayHomeAsUpEnabled(true) 36 | supportActionBar!!.title = null 37 | 38 | mProgressBar = ProgressDialog(this) 39 | mProgressBar!!.setTitle("Mohon Tunggu") 40 | mProgressBar!!.setCancelable(false) 41 | mProgressBar!!.setMessage("Sedang menampilkan data...") 42 | 43 | //get data 44 | about 45 | } 46 | 47 | private val about: Unit 48 | private get() { 49 | mProgressBar!!.show() 50 | AndroidNetworking.get(BloggerApi.About) 51 | .setPriority(Priority.MEDIUM) 52 | .build() 53 | .getAsJSONObject(object : JSONObjectRequestListener { 54 | override fun onResponse(response: JSONObject) { 55 | try { 56 | mProgressBar!!.dismiss() 57 | for (i in 0 until response.length()) { 58 | 59 | tvTitle!!.text = response.getString("title") 60 | 61 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) 62 | tvKetDetail!!.text = Html.fromHtml(response.getString("content"), 63 | Html.FROM_HTML_MODE_LEGACY) else { 64 | tvKetDetail!!.text = Html.fromHtml(response.getString("content")) 65 | } 66 | 67 | val datePost = response.getString("published") 68 | val inputFormat = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss") 69 | val outputFormat = SimpleDateFormat("dd-MM-yyyy") 70 | val date = inputFormat.parse(datePost) 71 | val datePostConvert = outputFormat.format(date) 72 | tvDate!!.text = datePostConvert 73 | 74 | val source = response.getString("url") 75 | fabSource!!.setOnClickListener { v: View? -> 76 | val intent = Intent(Intent.ACTION_VIEW) 77 | intent.data = Uri.parse(source) 78 | startActivity(intent) 79 | } 80 | } 81 | } catch (e: JSONException) { 82 | e.printStackTrace() 83 | Toast.makeText(this@AboutActivity, 84 | "Gagal menampilkan data!", Toast.LENGTH_SHORT).show() 85 | } catch (e: ParseException) { 86 | e.printStackTrace() 87 | Toast.makeText(this@AboutActivity, 88 | "Gagal menampilkan data!", Toast.LENGTH_SHORT).show() 89 | } 90 | } 91 | 92 | override fun onError(anError: ANError) { 93 | mProgressBar!!.dismiss() 94 | Toast.makeText(this@AboutActivity, 95 | "Tidak ada jaringan internet!", Toast.LENGTH_SHORT).show() 96 | } 97 | }) 98 | } 99 | 100 | override fun onOptionsItemSelected(item: MenuItem): Boolean { 101 | if (item.itemId == android.R.id.home) { 102 | finish() 103 | return true 104 | } 105 | return super.onOptionsItemSelected(item) 106 | } 107 | } -------------------------------------------------------------------------------- /MyBlog/app/src/main/java/com/azhar/myblog/activities/DetailArtikelActivity.kt: -------------------------------------------------------------------------------- 1 | package com.azhar.myblog.activities 2 | 3 | import android.content.Intent 4 | import android.net.Uri 5 | import android.os.Build 6 | import android.os.Bundle 7 | import android.text.Html 8 | import android.view.MenuItem 9 | import android.view.View 10 | import android.widget.ImageView 11 | import android.widget.ProgressBar 12 | import android.widget.TextView 13 | import androidx.appcompat.app.AppCompatActivity 14 | import androidx.appcompat.widget.Toolbar 15 | import com.azhar.myblog.R 16 | import com.azhar.myblog.model.ModelMain 17 | import com.bumptech.glide.Glide 18 | import com.bumptech.glide.load.engine.DiskCacheStrategy 19 | import com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton 20 | import kotlinx.android.synthetic.main.activity_detail_artikel.* 21 | import org.jsoup.Jsoup 22 | 23 | class DetailArtikelActivity : AppCompatActivity() { 24 | 25 | var modelMain: ModelMain? = null 26 | var strTitle: String? = null 27 | var strDate: String? = null 28 | var strKetDetail: String? = null 29 | var strImgDetail: String? = null 30 | var strUrl: String? = null 31 | //WebView webView; 32 | 33 | override fun onCreate(savedInstanceState: Bundle?) { 34 | super.onCreate(savedInstanceState) 35 | setContentView(R.layout.activity_detail_artikel) 36 | 37 | setSupportActionBar(toolbar_detail) 38 | assert(supportActionBar != null) 39 | supportActionBar!!.setDisplayHomeAsUpEnabled(true) 40 | supportActionBar!!.title = null 41 | 42 | progressBar.max = 100 43 | modelMain = intent.getSerializableExtra("detailArtikel") as ModelMain 44 | progressBar.progress = 0 45 | 46 | if (modelMain != null) { 47 | strTitle = modelMain!!.title 48 | strDate = modelMain!!.published 49 | strKetDetail = modelMain!!.content 50 | strUrl = modelMain!!.url 51 | 52 | val document = Jsoup.parse(modelMain!!.content.also { strImgDetail = it }) 53 | val element = document.select("img") 54 | Glide.with(this) 55 | .load(element[0].attr("src")) 56 | .diskCacheStrategy(DiskCacheStrategy.ALL) 57 | .into(imgDetail) 58 | 59 | progressBar.visibility = View.GONE 60 | 61 | tvTitle.text = strTitle 62 | tvTitle.isSelected = true 63 | tvDate.text = strDate 64 | 65 | //webView.loadData(strKetDetail, "text/html; charset=utf-8", "UTF-8"); 66 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) 67 | tvKetDetail.text = Html.fromHtml(strKetDetail, 68 | Html.FROM_HTML_MODE_LEGACY) else { 69 | tvKetDetail.text = Html.fromHtml(strKetDetail) 70 | } 71 | 72 | fabSource.setOnClickListener { 73 | val intent = Intent(Intent.ACTION_VIEW) 74 | intent.data = Uri.parse(strUrl) 75 | startActivity(intent) 76 | } 77 | } 78 | } 79 | 80 | override fun onOptionsItemSelected(item: MenuItem): Boolean { 81 | if (item.itemId == android.R.id.home) { 82 | finish() 83 | return true 84 | } 85 | return super.onOptionsItemSelected(item) 86 | } 87 | } -------------------------------------------------------------------------------- /MyBlog/app/src/main/java/com/azhar/myblog/activities/DisclaimerActivity.kt: -------------------------------------------------------------------------------- 1 | package com.azhar.myblog.activities 2 | 3 | import android.app.ProgressDialog 4 | import android.content.Intent 5 | import android.net.Uri 6 | import android.os.Build 7 | import android.os.Bundle 8 | import android.text.Html 9 | import android.view.MenuItem 10 | import android.view.View 11 | import android.widget.TextView 12 | import android.widget.Toast 13 | import androidx.appcompat.app.AppCompatActivity 14 | import androidx.appcompat.widget.Toolbar 15 | import com.androidnetworking.AndroidNetworking 16 | import com.androidnetworking.common.Priority 17 | import com.androidnetworking.error.ANError 18 | import com.androidnetworking.interfaces.JSONObjectRequestListener 19 | import com.azhar.myblog.R 20 | import com.azhar.myblog.networking.BloggerApi 21 | import com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton 22 | import kotlinx.android.synthetic.main.activity_header.* 23 | import org.json.JSONException 24 | import org.json.JSONObject 25 | import java.text.ParseException 26 | import java.text.SimpleDateFormat 27 | 28 | class DisclaimerActivity : AppCompatActivity() { 29 | 30 | var mProgressBar: ProgressDialog? = null 31 | 32 | override fun onCreate(savedInstanceState: Bundle?) { 33 | super.onCreate(savedInstanceState) 34 | setContentView(R.layout.activity_header) 35 | 36 | setSupportActionBar(toolbar) 37 | assert(supportActionBar != null) 38 | supportActionBar!!.setDisplayHomeAsUpEnabled(true) 39 | supportActionBar!!.title = null 40 | 41 | mProgressBar = ProgressDialog(this) 42 | mProgressBar!!.setTitle("Mohon Tunggu") 43 | mProgressBar!!.setCancelable(false) 44 | mProgressBar!!.setMessage("Sedang menampilkan data...") 45 | 46 | //get data 47 | disclaimer 48 | } 49 | 50 | private val disclaimer: Unit 51 | private get() { 52 | mProgressBar!!.show() 53 | AndroidNetworking.get(BloggerApi.Disclaimer) 54 | .setPriority(Priority.MEDIUM) 55 | .build() 56 | .getAsJSONObject(object : JSONObjectRequestListener { 57 | override fun onResponse(response: JSONObject) { 58 | try { 59 | mProgressBar!!.dismiss() 60 | for (i in 0 until response.length()) { 61 | 62 | tvTitle!!.text = response.getString("title") 63 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) 64 | tvKetDetail!!.text = Html.fromHtml(response.getString("content"), 65 | Html.FROM_HTML_MODE_LEGACY) else { 66 | tvKetDetail!!.text = Html.fromHtml(response.getString("content")) 67 | } 68 | 69 | val datePost = response.getString("published") 70 | val inputFormat = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss") 71 | val outputFormat = SimpleDateFormat("dd-MM-yyyy") 72 | val date = inputFormat.parse(datePost) 73 | val datePostConvert = outputFormat.format(date) 74 | tvDate!!.text = datePostConvert 75 | 76 | val source = response.getString("url") 77 | fabSource!!.setOnClickListener { v: View? -> 78 | val intent = Intent(Intent.ACTION_VIEW) 79 | intent.data = Uri.parse(source) 80 | startActivity(intent) 81 | } 82 | } 83 | } catch (e: JSONException) { 84 | e.printStackTrace() 85 | Toast.makeText(this@DisclaimerActivity, 86 | "Gagal menampilkan data!", Toast.LENGTH_SHORT).show() 87 | } catch (e: ParseException) { 88 | e.printStackTrace() 89 | Toast.makeText(this@DisclaimerActivity, 90 | "Gagal menampilkan data!", Toast.LENGTH_SHORT).show() 91 | } 92 | } 93 | 94 | override fun onError(anError: ANError) { 95 | mProgressBar!!.dismiss() 96 | Toast.makeText(this@DisclaimerActivity, 97 | "Tidak ada jaringan internet!", Toast.LENGTH_SHORT).show() 98 | } 99 | }) 100 | } 101 | 102 | override fun onOptionsItemSelected(item: MenuItem): Boolean { 103 | if (item.itemId == android.R.id.home) { 104 | finish() 105 | return true 106 | } 107 | return super.onOptionsItemSelected(item) 108 | } 109 | } -------------------------------------------------------------------------------- /MyBlog/app/src/main/java/com/azhar/myblog/activities/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.azhar.myblog.activities 2 | 3 | import android.app.ProgressDialog 4 | import android.content.Intent 5 | import android.net.Uri 6 | import android.os.Bundle 7 | import android.view.View 8 | import android.widget.LinearLayout 9 | import android.widget.Toast 10 | import androidx.appcompat.app.AppCompatActivity 11 | import androidx.recyclerview.widget.LinearLayoutManager 12 | import androidx.recyclerview.widget.RecyclerView 13 | import com.androidnetworking.AndroidNetworking 14 | import com.androidnetworking.common.Priority 15 | import com.androidnetworking.error.ANError 16 | import com.androidnetworking.interfaces.JSONObjectRequestListener 17 | import com.azhar.myblog.R 18 | import com.azhar.myblog.adapter.MainAdapter 19 | import com.azhar.myblog.adapter.MainAdapter.onSelectData 20 | import com.azhar.myblog.model.ModelMain 21 | import com.azhar.myblog.networking.BloggerApi 22 | import com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton 23 | import kotlinx.android.synthetic.main.activity_main.* 24 | import org.json.JSONException 25 | import org.json.JSONObject 26 | import java.text.ParseException 27 | import java.text.SimpleDateFormat 28 | import java.util.* 29 | 30 | class MainActivity : AppCompatActivity(), onSelectData { 31 | 32 | var mainAdapter: MainAdapter? = null 33 | var mProgressBar: ProgressDialog? = null 34 | var modelMain: MutableList = ArrayList() 35 | 36 | override fun onCreate(savedInstanceState: Bundle?) { 37 | super.onCreate(savedInstanceState) 38 | setContentView(R.layout.activity_main) 39 | 40 | mProgressBar = ProgressDialog(this) 41 | mProgressBar!!.setTitle("Mohon Tunggu") 42 | mProgressBar!!.setCancelable(false) 43 | mProgressBar!!.setMessage("Sedang menampilkan data...") 44 | 45 | llAbout.setOnClickListener { 46 | startActivity(Intent(this@MainActivity, AboutActivity::class.java)) } 47 | 48 | llPP.setOnClickListener { 49 | startActivity(Intent(this@MainActivity, PrivacyPolicyActivity::class.java)) } 50 | 51 | llDisclaimer.setOnClickListener { 52 | startActivity(Intent(this@MainActivity, DisclaimerActivity::class.java)) } 53 | 54 | fabSource.setOnClickListener { 55 | val intent = Intent(Intent.ACTION_VIEW) 56 | intent.data = Uri.parse("https://github.com/AzharRivaldi") 57 | startActivity(intent) 58 | } 59 | 60 | rvListArticles.setHasFixedSize(true) 61 | rvListArticles.setLayoutManager(LinearLayoutManager(this)) 62 | 63 | //get data 64 | listArticle 65 | } 66 | 67 | private val listArticle: Unit 68 | private get() { 69 | mProgressBar!!.show() 70 | AndroidNetworking.get(BloggerApi.ListPost) 71 | .setPriority(Priority.MEDIUM) 72 | .build() 73 | .getAsJSONObject(object : JSONObjectRequestListener { 74 | override fun onResponse(response: JSONObject) { 75 | try { 76 | mProgressBar!!.dismiss() 77 | val playerArray = response.getJSONArray("items") 78 | for (i in 0 until playerArray.length()) { 79 | val jsonObject1 = playerArray.getJSONObject(i) 80 | val dataApi = ModelMain() 81 | 82 | dataApi.title = jsonObject1.getString("title") 83 | dataApi.content = jsonObject1.getString("content") 84 | dataApi.labels = jsonObject1.getString("labels") 85 | dataApi.url = jsonObject1.getString("url") 86 | 87 | val datePost = jsonObject1.getString("published") 88 | val inputFormat = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss") 89 | val outputFormat = SimpleDateFormat("dd-MM-yyyy") 90 | val date = inputFormat.parse(datePost) 91 | val datePostConvert = outputFormat.format(date) 92 | dataApi.published = datePostConvert 93 | 94 | val jsonObject2 = jsonObject1.getJSONObject("author") 95 | val authorPost = jsonObject2.getString("displayName") 96 | dataApi.author = authorPost 97 | 98 | val jsonObject3 = jsonObject2.getJSONObject("image") 99 | val authorImage = jsonObject3.getString("url") 100 | dataApi.authorImage = Uri.parse("http:$authorImage").toString() 101 | modelMain.add(dataApi) 102 | showListArticle() 103 | } 104 | } catch (e: JSONException) { 105 | e.printStackTrace() 106 | Toast.makeText(this@MainActivity, 107 | "Gagal menampilkan data!", Toast.LENGTH_SHORT).show() 108 | } catch (e: ParseException) { 109 | e.printStackTrace() 110 | Toast.makeText(this@MainActivity, 111 | "Gagal menampilkan data!", Toast.LENGTH_SHORT).show() 112 | } 113 | } 114 | 115 | override fun onError(anError: ANError) { 116 | mProgressBar!!.dismiss() 117 | Toast.makeText(this@MainActivity, 118 | "Tidak ada jaringan internet!", Toast.LENGTH_SHORT).show() 119 | } 120 | }) 121 | } 122 | 123 | private fun showListArticle() { 124 | mainAdapter = MainAdapter(this@MainActivity, modelMain, this) 125 | rvListArticles!!.adapter = mainAdapter 126 | } 127 | 128 | override fun onSelected(modelMain: ModelMain) { 129 | val intent = Intent(this@MainActivity, DetailArtikelActivity::class.java) 130 | intent.putExtra("detailArtikel", modelMain) 131 | startActivity(intent) 132 | } 133 | } -------------------------------------------------------------------------------- /MyBlog/app/src/main/java/com/azhar/myblog/activities/PrivacyPolicyActivity.kt: -------------------------------------------------------------------------------- 1 | package com.azhar.myblog.activities 2 | 3 | import android.app.ProgressDialog 4 | import android.content.Intent 5 | import android.net.Uri 6 | import android.os.Build 7 | import android.os.Bundle 8 | import android.text.Html 9 | import android.view.MenuItem 10 | import android.view.View 11 | import android.widget.TextView 12 | import android.widget.Toast 13 | import androidx.appcompat.app.AppCompatActivity 14 | import androidx.appcompat.widget.Toolbar 15 | import com.androidnetworking.AndroidNetworking 16 | import com.androidnetworking.common.Priority 17 | import com.androidnetworking.error.ANError 18 | import com.androidnetworking.interfaces.JSONObjectRequestListener 19 | import com.azhar.myblog.R 20 | import com.azhar.myblog.networking.BloggerApi 21 | import com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton 22 | import kotlinx.android.synthetic.main.activity_header.* 23 | import org.json.JSONException 24 | import org.json.JSONObject 25 | import java.text.ParseException 26 | import java.text.SimpleDateFormat 27 | 28 | class PrivacyPolicyActivity : AppCompatActivity() { 29 | 30 | var mProgressBar: ProgressDialog? = null 31 | 32 | override fun onCreate(savedInstanceState: Bundle?) { 33 | super.onCreate(savedInstanceState) 34 | setContentView(R.layout.activity_header) 35 | 36 | setSupportActionBar(toolbar) 37 | assert(supportActionBar != null) 38 | supportActionBar!!.setDisplayHomeAsUpEnabled(true) 39 | supportActionBar!!.title = null 40 | 41 | mProgressBar = ProgressDialog(this) 42 | mProgressBar!!.setTitle("Mohon Tunggu") 43 | mProgressBar!!.setCancelable(false) 44 | mProgressBar!!.setMessage("Sedang menampilkan data...") 45 | 46 | //get data 47 | privacyPolicy 48 | } 49 | 50 | private val privacyPolicy: Unit 51 | private get() { 52 | mProgressBar!!.show() 53 | AndroidNetworking.get(BloggerApi.PrivacyPolicy) 54 | .setPriority(Priority.MEDIUM) 55 | .build() 56 | .getAsJSONObject(object : JSONObjectRequestListener { 57 | override fun onResponse(response: JSONObject) { 58 | try { 59 | mProgressBar!!.dismiss() 60 | for (i in 0 until response.length()) { 61 | 62 | tvTitle!!.text = response.getString("title") 63 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) 64 | tvKetDetail!!.text = Html.fromHtml(response.getString("content"), 65 | Html.FROM_HTML_MODE_LEGACY) else { 66 | tvKetDetail!!.text = Html.fromHtml(response.getString("content")) 67 | } 68 | 69 | val datePost = response.getString("published") 70 | val inputFormat = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss") 71 | val outputFormat = SimpleDateFormat("dd-MM-yyyy") 72 | val date = inputFormat.parse(datePost) 73 | val datePostConvert = outputFormat.format(date) 74 | tvDate!!.text = datePostConvert 75 | 76 | val source = response.getString("url") 77 | fabSource!!.setOnClickListener { v: View? -> 78 | val intent = Intent(Intent.ACTION_VIEW) 79 | intent.data = Uri.parse(source) 80 | startActivity(intent) 81 | } 82 | } 83 | } catch (e: JSONException) { 84 | e.printStackTrace() 85 | Toast.makeText(this@PrivacyPolicyActivity, 86 | "Gagal menampilkan data!", Toast.LENGTH_SHORT).show() 87 | } catch (e: ParseException) { 88 | e.printStackTrace() 89 | Toast.makeText(this@PrivacyPolicyActivity, 90 | "Gagal menampilkan data!", Toast.LENGTH_SHORT).show() 91 | } 92 | } 93 | 94 | override fun onError(anError: ANError) { 95 | mProgressBar!!.dismiss() 96 | Toast.makeText(this@PrivacyPolicyActivity, 97 | "Tidak ada jaringan internet!", Toast.LENGTH_SHORT).show() 98 | } 99 | }) 100 | } 101 | 102 | override fun onOptionsItemSelected(item: MenuItem): Boolean { 103 | if (item.itemId == android.R.id.home) { 104 | finish() 105 | return true 106 | } 107 | return super.onOptionsItemSelected(item) 108 | } 109 | } -------------------------------------------------------------------------------- /MyBlog/app/src/main/java/com/azhar/myblog/adapter/MainAdapter.java: -------------------------------------------------------------------------------- 1 | package com.azhar.myblog.adapter; 2 | 3 | import android.content.Context; 4 | import android.view.LayoutInflater; 5 | import android.view.View; 6 | import android.view.ViewGroup; 7 | import android.widget.ImageView; 8 | import android.widget.RelativeLayout; 9 | import android.widget.TextView; 10 | 11 | import androidx.recyclerview.widget.RecyclerView; 12 | 13 | import com.azhar.myblog.model.ModelMain; 14 | import com.azhar.myblog.R; 15 | import com.bumptech.glide.Glide; 16 | import com.bumptech.glide.load.engine.DiskCacheStrategy; 17 | 18 | import org.jsoup.Jsoup; 19 | import org.jsoup.nodes.Document; 20 | import org.jsoup.select.Elements; 21 | 22 | import java.util.List; 23 | 24 | /** 25 | * Created by Azhar Rivaldi on 22-12-2019. 26 | */ 27 | 28 | public class MainAdapter extends RecyclerView.Adapter { 29 | 30 | private List items; 31 | private MainAdapter.onSelectData onSelectData; 32 | private Context mContext; 33 | 34 | public interface onSelectData { 35 | void onSelected(ModelMain modelListLagu); 36 | } 37 | 38 | public MainAdapter(Context context, List items, MainAdapter.onSelectData xSelectData) { 39 | this.mContext = context; 40 | this.items = items; 41 | this.onSelectData = xSelectData; 42 | } 43 | 44 | @Override 45 | public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { 46 | View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.list_item_artikel, parent, false); 47 | return new ViewHolder(v); 48 | } 49 | 50 | @Override 51 | public void onBindViewHolder(ViewHolder holder, int position) { 52 | final ModelMain data = items.get(position); 53 | 54 | //Get Image 55 | Document document = Jsoup.parse(data.getContent()); 56 | Elements element = document.select("img"); 57 | 58 | Glide.with(mContext) 59 | .load(element.get(0).attr("src")) 60 | .diskCacheStrategy(DiskCacheStrategy.ALL) 61 | .fitCenter() 62 | .into(holder.imgThumb); 63 | 64 | Glide.with(mContext) 65 | .load(data.getAuthorImage()) 66 | .diskCacheStrategy(DiskCacheStrategy.ALL) 67 | .fitCenter() 68 | .into(holder.imgAuthor); 69 | 70 | holder.tvTitle.setText(data.getTitle()); 71 | holder.tvAuthor.setText(data.getAuthor()); 72 | holder.tvDatePost.setText(data.getPublished()); 73 | holder.rlArtikel.setOnClickListener(new View.OnClickListener() { 74 | @Override 75 | public void onClick(View v) { 76 | onSelectData.onSelected(data); 77 | } 78 | }); 79 | } 80 | 81 | @Override 82 | public int getItemCount() { 83 | return items.size(); 84 | } 85 | 86 | //Class Holder 87 | class ViewHolder extends RecyclerView.ViewHolder { 88 | 89 | public TextView tvTitle; 90 | public TextView tvAuthor; 91 | public TextView tvDatePost; 92 | public RelativeLayout rlArtikel; 93 | public ImageView imgThumb; 94 | public ImageView imgAuthor; 95 | 96 | public ViewHolder(View itemView) { 97 | super(itemView); 98 | rlArtikel = itemView.findViewById(R.id.rlArtikel); 99 | imgThumb = itemView.findViewById(R.id.imgThumb); 100 | imgAuthor = itemView.findViewById(R.id.imgAuthor); 101 | tvTitle = itemView.findViewById(R.id.tvTitle); 102 | tvAuthor = itemView.findViewById(R.id.tvAuthor); 103 | tvDatePost = itemView.findViewById(R.id.tvDatePost); 104 | } 105 | } 106 | 107 | } 108 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/java/com/azhar/myblog/model/ModelMain.kt: -------------------------------------------------------------------------------- 1 | package com.azhar.myblog.model 2 | 3 | import java.io.Serializable 4 | 5 | /** 6 | * Created by Azhar Rivaldi on 22-12-2019. 7 | */ 8 | 9 | class ModelMain : Serializable { 10 | 11 | var published: String? = null 12 | var url: String? = null 13 | var title: String? = null 14 | var content: String? = null 15 | var labels: String? = null 16 | var author: String? = null 17 | var authorImage: String? = null 18 | 19 | } -------------------------------------------------------------------------------- /MyBlog/app/src/main/java/com/azhar/myblog/networking/BloggerApi.kt: -------------------------------------------------------------------------------- 1 | package com.azhar.myblog.networking 2 | 3 | /** 4 | * Created by Azhar Rivaldi on 22-12-2019. 5 | */ 6 | 7 | object BloggerApi { 8 | 9 | var BASE_URL = "https://www.googleapis.com/blogger/v3/blogs/" 10 | var API_KEY = "API_KEY" 11 | var BLOGGER_ID = "ID_BLOG" 12 | 13 | var ListPost = "$BASE_URL$BLOGGER_ID/posts?key=$API_KEY" 14 | 15 | var About = "$BASE_URL$BLOGGER_ID/pages/ID_PAGES?key=$API_KEY" 16 | 17 | var PrivacyPolicy = "$BASE_URL$BLOGGER_ID/pages/ID_PAGE?key=$API_KEY" 18 | 19 | var Disclaimer = "$BASE_URL$BLOGGER_ID/pages/ID_PAGE?key=$API_KEY" 20 | 21 | } 22 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-anydpi/ic_source.xml: -------------------------------------------------------------------------------- 1 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-hdpi/ic_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/drawable-hdpi/ic_source.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-mdpi/ic_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/drawable-mdpi/ic_source.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-xhdpi/ic_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/drawable-xhdpi/ic_source.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-xxhdpi/ic_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/drawable-xxhdpi/ic_source.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-xxxhdpi/ic_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/drawable-xxxhdpi/ic_about.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-xxxhdpi/ic_disclaimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/drawable-xxxhdpi/ic_disclaimer.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-xxxhdpi/ic_privacy_policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/drawable-xxxhdpi/ic_privacy_policy.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable-xxxhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/drawable-xxxhdpi/ic_search.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable/bg_circle_radius_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable/bg_curved.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/layout/activity_detail_artikel.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 22 | 23 | 29 | 30 | 37 | 38 | 46 | 47 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 69 | 70 | 76 | 77 | 81 | 82 | 87 | 88 | 96 | 97 | 98 | 99 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 125 | 126 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/layout/activity_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 22 | 23 | 33 | 34 | 35 | 36 | 37 | 38 | 43 | 44 | 50 | 51 | 55 | 56 | 61 | 62 | 70 | 71 | 72 | 73 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 99 | 100 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 12 | 13 | 17 | 18 | 19 | 20 | 25 | 26 | 32 | 33 | 37 | 38 | 48 | 49 | 50 | 51 | 52 | 53 | 62 | 63 | 70 | 71 | 72 | 73 | 74 | 75 | 82 | 83 | 89 | 90 | 96 | 97 | 104 | 105 | 111 | 112 | 119 | 120 | 121 | 122 | 129 | 130 | 136 | 137 | 145 | 146 | 147 | 148 | 155 | 156 | 162 | 163 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 183 | 184 | 188 | 189 | 190 | 191 | 205 | 206 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/layout/list_item_artikel.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 12 | 13 | 17 | 18 | 25 | 26 | 30 | 31 | 36 | 37 | 45 | 46 | 54 | 55 | 63 | 64 | 71 | 72 | 73 | 74 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 101 | 102 | 112 | 113 | 114 | 115 | 116 | 117 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzharRivaldi/Blogger-API-v3/1a583fe12cdb335432b114c6ccd15c795d48823a/MyBlog/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #f78c94 4 | #ed828a 5 | #eac958 6 | 7 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Blog 3 | 4 | -------------------------------------------------------------------------------- /MyBlog/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 17 | 18 | 22 | 23 | 29 | 30 | 33 | 34 |