summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com>2022-04-24 16:48:11 +0200
committerGitHub <noreply@github.com>2022-04-24 16:48:11 +0200
commit89bf30cd2bad12827dc16c81973543ffc36d06eb (patch)
tree9cceed4bddec1251c824db61775b69e1dc041921
parentAdd files via upload (diff)
downloadxManager-89bf30cd2bad12827dc16c81973543ffc36d06eb.tar
xManager-89bf30cd2bad12827dc16c81973543ffc36d06eb.tar.gz
xManager-89bf30cd2bad12827dc16c81973543ffc36d06eb.tar.bz2
xManager-89bf30cd2bad12827dc16c81973543ffc36d06eb.tar.lz
xManager-89bf30cd2bad12827dc16c81973543ffc36d06eb.tar.xz
xManager-89bf30cd2bad12827dc16c81973543ffc36d06eb.tar.zst
xManager-89bf30cd2bad12827dc16c81973543ffc36d06eb.zip
-rw-r--r--app/src/main/res/layout/list_changelogs.xml25
1 files changed, 17 insertions, 8 deletions
diff --git a/app/src/main/res/layout/list_changelogs.xml b/app/src/main/res/layout/list_changelogs.xml
index 68d3031..af511b6 100644
--- a/app/src/main/res/layout/list_changelogs.xml
+++ b/app/src/main/res/layout/list_changelogs.xml
@@ -5,13 +5,22 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
- <TextView
- android:id="@+id/changelogs_info"
- android:focusable="false"
- android:layout_width="wrap_content"
+ <LinearLayout
+ android:id="@+id/box"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:padding="8dp"
- android:textSize="14sp"
- android:textStyle="bold"
- android:textColor="#BDBDBD" />
+ android:padding="10dp"
+ android:gravity="left|center_vertical"
+ android:orientation="horizontal">
+ <TextView
+ android:id="@+id/info"
+ android:focusable="false"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingTop="5dp"
+ android:paddingBottom="5dp"
+ android:textSize="14sp"
+ android:textStyle="bold"
+ android:textColor="#BDBDBD" />
+ </LinearLayout>
</LinearLayout>