@@ -27,7 +27,7 @@ public class SettingActivity extends MaterialAboutActivity {
27
27
int orange = R .color .orange_600 ;
28
28
int grey = R .color .grey_500 ;
29
29
int lightGreen = R .color .green_500 ;
30
- int lightBlue = R .color .blue_500 ;
30
+ int brown = R .color .brown_500 ;
31
31
32
32
@ Override
33
33
protected MaterialAboutList getMaterialAboutList (Context c ) {
@@ -57,7 +57,7 @@ protected MaterialAboutList getMaterialAboutList(Context c) {
57
57
.text ("Changelog" )
58
58
.icon (new IconicsDrawable (c )
59
59
.icon (CommunityMaterial .Icon .cmd_history )
60
- .color (ContextCompat .getColor (c , purple ))
60
+ .color (ContextCompat .getColor (c , brown ))
61
61
.sizeDp (18 ))
62
62
.setOnClickListener (ConvenienceBuilder .createWebViewDialogOnClickAction (c , "Releases" , "https://github.com/Bella-Assistant/Bella-Android/blob/master/CHANGELOG" , true , false ))
63
63
.build ());
@@ -145,10 +145,22 @@ protected MaterialAboutList getMaterialAboutList(Context c) {
145
145
null ,
146
146
"bangalore" ));
147
147
148
- MaterialAboutCard .Builder otherCardBuilder = new MaterialAboutCard .Builder ();
149
- otherCardBuilder .title ("Other" );
148
+ MaterialAboutCard .Builder appCardBuilder1 = new MaterialAboutCard .Builder ();
149
+ appCardBuilder1 .title ("Other" );
150
150
151
- otherCardBuilder .addItem (new MaterialAboutActionItem .Builder ()
151
+ appCardBuilder1 .addItem (new MaterialAboutActionItem .Builder ()
152
+ .icon (new IconicsDrawable (c )
153
+ .icon (CommunityMaterial .Icon .cmd_gavel )
154
+ .color (ContextCompat .getColor (c , brown ))
155
+ .sizeDp (18 ))
156
+ .text ("The Drill" )
157
+ .subTextHtml ("Logcat or GTFO" )
158
+ .setIconGravity (MaterialAboutActionItem .GRAVITY_TOP )
159
+ .setOnClickListener (ConvenienceBuilder .createWebViewDialogOnClickAction (c , "Logcat or GTFO" , "http://i.bittwiddlers.org/LIt.png" , true , true ))
160
+ .build ()
161
+ );
162
+
163
+ appCardBuilder1 .addItem (new MaterialAboutActionItem .Builder ()
152
164
.icon (new IconicsDrawable (c )
153
165
.icon (CommunityMaterial .Icon .cmd_language_html5 )
154
166
.color (ContextCompat .getColor (c , orange ))
@@ -160,7 +172,7 @@ protected MaterialAboutList getMaterialAboutList(Context c) {
160
172
);
161
173
162
174
163
- return new MaterialAboutList (appCardBuilder .build (), authorCardBuilder .build (), convenienceCardBuilder .build (), otherCardBuilder .build ());
175
+ return new MaterialAboutList (appCardBuilder .build (), authorCardBuilder .build (), convenienceCardBuilder .build (), appCardBuilder1 .build ());
164
176
}
165
177
166
178
@ Override
0 commit comments