From 85509c84cfb00830d56185c2d7bc1fb0357be944 Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Thu, 13 Sep 2018 22:09:17 +0200
Subject: Added better post layout :lipstick: :sparkles:
---
app/src/main/java/me/texx/Texx/MainActivity.kt | 32 +++----
app/src/main/res/drawable/btn_comment.xml | 10 +++
app/src/main/res/drawable/btn_like.xml | 10 +++
app/src/main/res/drawable/btn_share.xml | 10 +++
app/src/main/res/layout/content_main.xml | 30 ++++++-
app/src/main/res/layout/template_text_post.xml | 97 ++++++++++++++++++++++
app/src/main/res/values/ic_launcher_background.xml | 4 -
app/src/main/res/values/launcher_background.xml | 4 +
app/src/main/res/values/strings.xml | 1 +
9 files changed, 177 insertions(+), 21 deletions(-)
create mode 100644 app/src/main/res/drawable/btn_comment.xml
create mode 100644 app/src/main/res/drawable/btn_like.xml
create mode 100644 app/src/main/res/drawable/btn_share.xml
create mode 100644 app/src/main/res/layout/template_text_post.xml
delete mode 100644 app/src/main/res/values/ic_launcher_background.xml
create mode 100644 app/src/main/res/values/launcher_background.xml
(limited to 'app/src')
diff --git a/app/src/main/java/me/texx/Texx/MainActivity.kt b/app/src/main/java/me/texx/Texx/MainActivity.kt
index 337ec75..59f0fe0 100644
--- a/app/src/main/java/me/texx/Texx/MainActivity.kt
+++ b/app/src/main/java/me/texx/Texx/MainActivity.kt
@@ -3,9 +3,9 @@ package me.texx.Texx
import android.os.Bundle
import android.os.StrictMode
import android.support.v7.app.AppCompatActivity
+import android.view.LayoutInflater
import android.view.Menu
import android.view.MenuItem
-import android.view.ViewGroup
import android.widget.TextView
import com.github.kittinunf.fuel.android.extension.responseJson
import com.github.kittinunf.fuel.httpGet
@@ -86,7 +86,7 @@ class MainActivity : AppCompatActivity() {
private fun getPosts(): JSONObject? {
val policy = StrictMode.ThreadPolicy.Builder().permitAll().build()
StrictMode.setThreadPolicy(policy)
- val (_, _, result) = "/posts".httpGet().responseJson()
+ val (_, _, result) = "/posts?includes[]=user".httpGet().responseJson()
val (data, error) = result
return if (error == null) {
data?.obj()
@@ -107,13 +107,21 @@ class MainActivity : AppCompatActivity() {
when (postType) {
"Text" -> {
- val text: String = (postObject.get("post") as JSONObject).get("text").toString()
- val padding = calculatePadding()
- val textView = TextView(this)
- textView.text = text
- textView.setPadding(padding, padding, padding, padding)
- textView.layoutParams = ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)
- post_list.addView(textView)
+ val postTemplate = LayoutInflater.from(this).inflate(R.layout.template_text_post, null)
+
+ val postComposer: String = (postObject.get("user") as JSONObject).get("name").toString()
+ val postComposerTextView: TextView = postTemplate.findViewById(R.id.text_post_composer)
+ postComposerTextView.text = postComposer
+
+ val postDate: String = postObject.get("created_at").toString()
+ val postDateTextView: TextView = postTemplate.findViewById(R.id.text_post_date)
+ postDateTextView.text = postDate
+
+ val postContent: String = (postObject.get("post") as JSONObject).get("text").toString()
+ val postContentTextView: TextView = postTemplate.findViewById(R.id.text_post_content)
+ postContentTextView.text = postContent
+
+ post_list.addView(postTemplate)
}
"Media" -> {
@@ -122,10 +130,4 @@ class MainActivity : AppCompatActivity() {
}
}
}
-
- private fun calculatePadding(): Int {
- val paddingDp = 16
- val screenDensity = this.resources.displayMetrics.density
- return (paddingDp * screenDensity).toInt()
- }
}
\ No newline at end of file
diff --git a/app/src/main/res/drawable/btn_comment.xml b/app/src/main/res/drawable/btn_comment.xml
new file mode 100644
index 0000000..c799ead
--- /dev/null
+++ b/app/src/main/res/drawable/btn_comment.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/app/src/main/res/drawable/btn_like.xml b/app/src/main/res/drawable/btn_like.xml
new file mode 100644
index 0000000..38b3e44
--- /dev/null
+++ b/app/src/main/res/drawable/btn_like.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/app/src/main/res/drawable/btn_share.xml b/app/src/main/res/drawable/btn_share.xml
new file mode 100644
index 0000000..ba36bd4
--- /dev/null
+++ b/app/src/main/res/drawable/btn_share.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/app/src/main/res/layout/content_main.xml b/app/src/main/res/layout/content_main.xml
index c892763..7c7ef1e 100644
--- a/app/src/main/res/layout/content_main.xml
+++ b/app/src/main/res/layout/content_main.xml
@@ -16,10 +16,36 @@
app:layout_constraintTop_toTopOf="parent">
+ android:orientation="vertical">
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/template_text_post.xml b/app/src/main/res/layout/template_text_post.xml
new file mode 100644
index 0000000..a56683c
--- /dev/null
+++ b/app/src/main/res/layout/template_text_post.xml
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/values/ic_launcher_background.xml b/app/src/main/res/values/ic_launcher_background.xml
deleted file mode 100644
index 23d3c2c..0000000
--- a/app/src/main/res/values/ic_launcher_background.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- #FB5D5E
-
\ No newline at end of file
diff --git a/app/src/main/res/values/launcher_background.xml b/app/src/main/res/values/launcher_background.xml
new file mode 100644
index 0000000..23d3c2c
--- /dev/null
+++ b/app/src/main/res/values/launcher_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FB5D5E
+
\ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index df13742..496c715 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -37,6 +37,7 @@
Title
Describe your issue
Hello blank fragment
+ What\'s happening?