Skip to content

Commit a113e27

Browse files
Slightly updated credits, about & main layout
Signed-off-by: sunilpaulmathew <sunil.kde@gmail.com>
1 parent 9328c2d commit a113e27

3 files changed

Lines changed: 52 additions & 56 deletions

File tree

Credits.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ BusyBox Installer is, and as always, an open-source project which is ready to ac
77
* [Lennoard Silva](https://github.com/Lennoard): contributed code to this project, especially in its early stage of development
88

99
## Binaries
10-
* [https://busybox.net/](https://busybox.net/), BusyBox Binaries
10+
* [topjohnwu](https://github.com/topjohnwu/ndk-box-kitchen), BusyBox Binaries
11+
* [https://busybox.net/](https://busybox.net/), BusyBox Binaries (old)
12+
* [linsui](https://gitlab.com/linsui), BusyBox Binaries (building)
1113

1214
## Icon
1315
* [sajid_islam](https://t.me/sajid_islam), App Icon

app/src/main/java/com/smartpack/busyboxinstaller/utils/AboutActivity.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,11 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
6363
mData.add(new RecycleViewItem("topjohnwu", "BusyBox Binaries", "https://github.com/topjohnwu/ndk-box-kitchen"));
6464
mData.add(new RecycleViewItem("https://busybox.net/", "BusyBox Binaries (old versions)", "https://busybox.net/"));
6565
mData.add(new RecycleViewItem("linsui", "BusyBox Binaries (building)", "https://gitlab.com/linsui"));
66-
mData.add(new RecycleViewItem("Lennoard Silva", "Code Contributions", "https://github.com/Lennoard"));
66+
mData.add(new RecycleViewItem("Lennoard Silva", "Code Contributions & Portuguese (Brazilian) Translations", "https://github.com/Lennoard"));
6767
mData.add(new RecycleViewItem("sajid_islam", "App Icon", "https://t.me/sajid_islam"));
6868
mData.add(new RecycleViewItem("FiestaLake", "Korean Translations", "https://github.com/FiestaLake"));
6969
mData.add(new RecycleViewItem("Mikesew1320", "Amharic & Russian Translations", "https://github.com/Mikesew1320"));
7070
mData.add(new RecycleViewItem("tsiflimagas", "Greek Translations", "https://github.com/tsiflimagas"));
71-
mData.add(new RecycleViewItem("Lennoard Silva", "Portuguese (Brazilian) Translations", "https://github.com/Lennoard"));
7271
mData.add(new RecycleViewItem("Hafitz Setya", "Indonesian Translations", "https://github.com/breakdowns"));
7372
mData.add(new RecycleViewItem("Jonas. Ned", "Czech Translations", null));
7473

Lines changed: 48 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,62 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<RelativeLayout
3-
xmlns:android="http://schemas.android.com/apk/res/android"
4-
xmlns:app="http://schemas.android.com/apk/res-auto"
53
android:layout_height="match_parent"
6-
android:layout_width="match_parent">
4+
android:layout_width="match_parent"
5+
xmlns:android="http://schemas.android.com/apk/res/android"
6+
xmlns:app="http://schemas.android.com/apk/res-auto" >
77

8-
<LinearLayout
8+
<FrameLayout
99
android:layout_width="match_parent"
10-
android:layout_height="match_parent"
11-
android:orientation="vertical" >
10+
android:layout_height="50dp"
11+
android:gravity="top|center_vertical"
12+
android:background="@color/colorBlack"
13+
android:padding="10dp" >
1214

13-
<FrameLayout
15+
<com.google.android.material.textview.MaterialTextView
1416
android:layout_width="match_parent"
17+
android:layout_height="wrap_content"
18+
android:layout_marginEnd="50dp"
19+
android:layout_gravity="start"
20+
android:gravity="center_vertical"
21+
android:textColor="?attr/colorAccent"
22+
android:text="@string/app_name"
23+
android:textStyle="bold"
24+
android:textSize="20sp" />
25+
26+
<androidx.appcompat.widget.AppCompatImageButton
27+
android:id="@+id/settings_menu"
28+
android:layout_width="40dp"
1529
android:layout_height="50dp"
16-
android:gravity="top|center_vertical"
17-
android:background="@color/colorBlack"
18-
android:padding="10dp" >
30+
android:background="@null"
31+
android:tint="?attr/colorAccent"
32+
android:layout_gravity="end|center"
33+
android:src="@drawable/ic_settings" />
34+
</FrameLayout>
1935

20-
<com.google.android.material.textview.MaterialTextView
21-
android:layout_width="match_parent"
22-
android:layout_height="wrap_content"
23-
android:layout_marginEnd="50dp"
24-
android:layout_gravity="start"
25-
android:gravity="center_vertical"
26-
android:textColor="?attr/colorAccent"
27-
android:text="@string/app_name"
28-
android:textStyle="bold"
29-
android:textSize="20sp" />
36+
<LinearLayout
37+
android:id="@+id/install"
38+
android:layout_width="wrap_content"
39+
android:layout_height="wrap_content"
40+
android:layout_centerInParent="true"
41+
android:layout_gravity="center"
42+
android:orientation="vertical"
43+
android:visibility="gone"
44+
android:gravity="center" >
3045

31-
<androidx.appcompat.widget.AppCompatImageButton
32-
android:id="@+id/settings_menu"
33-
android:layout_width="40dp"
34-
android:layout_height="50dp"
35-
android:background="@null"
36-
android:tint="?attr/colorAccent"
37-
android:layout_gravity="end|center"
38-
android:src="@drawable/ic_settings" />
39-
</FrameLayout>
46+
<androidx.appcompat.widget.AppCompatImageView
47+
android:layout_width="125dp"
48+
android:layout_height="125dp"
49+
app:srcCompat="@mipmap/ic_launcher_round" />
4050

41-
<LinearLayout
42-
android:id="@+id/install"
43-
android:layout_width="match_parent"
44-
android:layout_height="match_parent"
45-
android:layout_gravity="center"
46-
android:orientation="vertical"
51+
<com.google.android.material.textview.MaterialTextView
52+
android:id="@+id/install_text"
53+
android:layout_width="wrap_content"
54+
android:layout_height="wrap_content"
55+
android:textColor="?attr/colorAccent"
56+
android:textStyle="bold"
4757
android:gravity="center"
48-
android:visibility="gone" >
49-
50-
<androidx.appcompat.widget.AppCompatImageView
51-
android:layout_width="125dp"
52-
android:layout_height="125dp"
53-
app:srcCompat="@mipmap/ic_launcher_round" />
54-
55-
<com.google.android.material.textview.MaterialTextView
56-
android:id="@+id/install_text"
57-
android:layout_width="wrap_content"
58-
android:layout_height="wrap_content"
59-
android:textColor="?attr/colorAccent"
60-
android:textStyle="bold"
61-
android:gravity="center"
62-
android:textSize="20sp"
63-
android:padding="15dp" />
64-
</LinearLayout>
58+
android:textSize="20sp"
59+
android:padding="15dp" />
6560
</LinearLayout>
6661

6762
<LinearLayout
@@ -88,6 +83,6 @@
8883
android:layout_marginTop="10dp"
8984
android:textColor="?attr/colorAccent"
9085
android:textSize="15sp"
91-
android:padding="10dp"/>
86+
android:padding="10dp" />
9287
</LinearLayout>
9388
</RelativeLayout>

0 commit comments

Comments
 (0)