Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
e18f4c84
Commit
e18f4c84
authored
Aug 23, 2016
by
dvdandroid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added AboutActivity
parent
0f103d58
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
527 additions
and
11 deletions
+527
-11
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+1
-0
AboutActivity.java
app/src/main/java/com/topjohnwu/magisk/AboutActivity.java
+146
-0
WelcomeActivity.java
app/src/main/java/com/topjohnwu/magisk/WelcomeActivity.java
+4
-0
RowItem.java
app/src/main/java/com/topjohnwu/magisk/utils/RowItem.java
+89
-0
ic_github.xml
app/src/main/res/drawable/ic_github.xml
+10
-0
ic_history.xml
app/src/main/res/drawable/ic_history.xml
+9
-0
ic_info_outline.xml
app/src/main/res/drawable/ic_info_outline.xml
+9
-0
ic_language.xml
app/src/main/res/drawable/ic_language.xml
+9
-0
ic_person.xml
app/src/main/res/drawable/ic_person.xml
+9
-0
ic_xda.xml
app/src/main/res/drawable/ic_xda.xml
+9
-0
activity_about.xml
app/src/main/res/layout/activity_about.xml
+118
-0
activity_welcome.xml
app/src/main/res/layout/activity_welcome.xml
+1
-7
info_item_row.xml
app/src/main/res/layout/info_item_row.xml
+58
-0
toolbar.xml
app/src/main/res/layout/toolbar.xml
+9
-0
drawer.xml
app/src/main/res/menu/drawer.xml
+12
-4
attrs.xml
app/src/main/res/values/attrs.xml
+25
-0
strings.xml
app/src/main/res/values/strings.xml
+9
-0
No files found.
app/src/main/AndroidManifest.xml
View file @
e18f4c84
...
...
@@ -21,6 +21,7 @@
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
<activity
android:name=
".AboutActivity"
/>
</application>
</manifest>
\ No newline at end of file
app/src/main/java/com/topjohnwu/magisk/AboutActivity.java
0 → 100644
View file @
e18f4c84
package
com
.
topjohnwu
.
magisk
;
import
android.content.Intent
;
import
android.net.Uri
;
import
android.os.Build
;
import
android.os.Bundle
;
import
android.support.annotation.Nullable
;
import
android.support.v7.app.ActionBar
;
import
android.support.v7.app.AlertDialog
;
import
android.support.v7.app.AppCompatActivity
;
import
android.support.v7.widget.Toolbar
;
import
android.text.Html
;
import
android.text.TextUtils
;
import
android.text.method.LinkMovementMethod
;
import
android.view.View
;
import
android.widget.TextView
;
import
com.topjohnwu.magisk.utils.RowItem
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
butterknife.BindView
;
import
butterknife.ButterKnife
;
public
class
AboutActivity
extends
AppCompatActivity
{
private
static
final
String
SOURCE_CODE_URL
=
"https://github.com/topjohnwu/MagiskManager"
;
private
static
final
String
XDA_THREAD
=
"http://forum.xda-developers.com/android/software/mod-magisk-v1-universal-systemless-t3432382"
;
@BindView
(
R
.
id
.
toolbar
)
Toolbar
toolbar
;
@BindView
(
R
.
id
.
app_version_info
)
RowItem
appVersionInfo
;
@BindView
(
R
.
id
.
app_changelog
)
RowItem
appChangelog
;
@BindView
(
R
.
id
.
app_developers
)
RowItem
appDevelopers
;
@BindView
(
R
.
id
.
app_translators
)
RowItem
appTranslators
;
@BindView
(
R
.
id
.
app_source_code
)
RowItem
appSourceCode
;
@BindView
(
R
.
id
.
support_thread
)
RowItem
supportThread
;
@Override
protected
void
onCreate
(
@Nullable
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
setContentView
(
R
.
layout
.
activity_about
);
if
(
Build
.
VERSION
.
SDK_INT
>=
Build
.
VERSION_CODES
.
M
)
{
getWindow
().
getDecorView
().
setSystemUiVisibility
(
View
.
SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
);
}
ButterKnife
.
bind
(
this
);
setSupportActionBar
(
toolbar
);
toolbar
.
setNavigationOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
finish
();
}
});
ActionBar
ab
=
getSupportActionBar
();
if
(
ab
!=
null
)
{
ab
.
setTitle
(
R
.
string
.
about
);
ab
.
setDisplayHomeAsUpEnabled
(
true
);
}
appVersionInfo
.
setSummary
(
BuildConfig
.
VERSION_NAME
);
String
changes
=
null
;
try
{
InputStream
is
=
getAssets
().
open
(
"changelog.html"
);
int
size
=
is
.
available
();
byte
[]
buffer
=
new
byte
[
size
];
is
.
read
(
buffer
);
is
.
close
();
changes
=
new
String
(
buffer
);
}
catch
(
IOException
ignored
)
{
}
appChangelog
.
removeSummary
();
if
(
changes
==
null
)
{
appChangelog
.
setVisibility
(
View
.
GONE
);
}
else
{
final
String
finalChanges
=
changes
;
appChangelog
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
AlertDialog
d
=
new
AlertDialog
.
Builder
(
AboutActivity
.
this
)
.
setTitle
(
R
.
string
.
app_changelog
)
.
setMessage
(
Html
.
fromHtml
(
finalChanges
))
.
setPositiveButton
(
android
.
R
.
string
.
ok
,
null
)
.
create
();
d
.
show
();
//noinspection ConstantConditions
((
TextView
)
d
.
findViewById
(
android
.
R
.
id
.
message
)).
setMovementMethod
(
LinkMovementMethod
.
getInstance
());
}
});
}
appDevelopers
.
removeSummary
();
appDevelopers
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
AlertDialog
d
=
new
AlertDialog
.
Builder
(
AboutActivity
.
this
)
.
setTitle
(
R
.
string
.
app_developers
)
.
setMessage
(
Html
.
fromHtml
(
getString
(
R
.
string
.
app_developers_
)))
.
setPositiveButton
(
android
.
R
.
string
.
ok
,
null
)
.
create
();
d
.
show
();
//noinspection ConstantConditions
((
TextView
)
d
.
findViewById
(
android
.
R
.
id
.
message
)).
setMovementMethod
(
LinkMovementMethod
.
getInstance
());
}
});
String
translators
=
getString
(
R
.
string
.
translators
);
if
(
TextUtils
.
isEmpty
(
translators
))
{
appTranslators
.
setVisibility
(
View
.
GONE
);
}
else
{
appTranslators
.
setSummary
(
translators
);
}
appSourceCode
.
removeSummary
();
appSourceCode
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
startActivity
(
new
Intent
(
Intent
.
ACTION_VIEW
,
Uri
.
parse
(
SOURCE_CODE_URL
)));
}
});
supportThread
.
removeSummary
();
supportThread
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
startActivity
(
new
Intent
(
Intent
.
ACTION_VIEW
,
Uri
.
parse
(
XDA_THREAD
)));
}
});
}
@Override
protected
void
onResume
()
{
super
.
onResume
();
getWindow
().
setStatusBarColor
(
getResources
().
getColor
(
R
.
color
.
primary_dark
));
}
}
app/src/main/java/com/topjohnwu/magisk/WelcomeActivity.java
View file @
e18f4c84
package
com
.
topjohnwu
.
magisk
;
import
android.content.Intent
;
import
android.os.AsyncTask
;
import
android.os.Build
;
import
android.os.Bundle
;
...
...
@@ -130,6 +131,9 @@ public class WelcomeActivity extends AppCompatActivity implements NavigationView
setTitle
(
R
.
string
.
log
);
navFragment
=
new
LogFragment
();
break
;
case
R
.
id
.
app_about
:
startActivity
(
new
Intent
(
this
,
AboutActivity
.
class
));
return
;
}
if
(
navFragment
!=
null
)
{
...
...
app/src/main/java/com/topjohnwu/magisk/utils/RowItem.java
0 → 100644
View file @
e18f4c84
/*
* Copyright 2016 dvdandroid
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com
.
topjohnwu
.
magisk
.
utils
;
import
android.content.Context
;
import
android.content.res.TypedArray
;
import
android.graphics.drawable.Drawable
;
import
android.util.AttributeSet
;
import
android.view.LayoutInflater
;
import
android.view.View
;
import
android.widget.ImageView
;
import
android.widget.LinearLayout
;
import
android.widget.TextView
;
import
com.topjohnwu.magisk.R
;
/**
* @author dvdandroid
*/
public
class
RowItem
extends
LinearLayout
{
private
final
String
title
;
private
final
Drawable
icon
;
private
final
TextView
mTitle
;
private
final
TextView
mSummary
;
private
final
ImageView
mIcon
;
private
final
View
mView
;
public
RowItem
(
Context
context
)
{
this
(
context
,
null
);
}
public
RowItem
(
Context
context
,
AttributeSet
attrs
)
{
this
(
context
,
attrs
,
0
);
}
public
RowItem
(
Context
context
,
AttributeSet
attrs
,
int
defStyleAttr
)
{
super
(
context
,
attrs
,
defStyleAttr
);
LayoutInflater
.
from
(
context
).
inflate
(
R
.
layout
.
info_item_row
,
this
);
TypedArray
a
=
context
.
getTheme
().
obtainStyledAttributes
(
attrs
,
R
.
styleable
.
RowItem
,
0
,
0
);
try
{
title
=
a
.
getString
(
R
.
styleable
.
RowItem_text
);
icon
=
a
.
getDrawable
(
R
.
styleable
.
RowItem_icon
);
}
finally
{
a
.
recycle
();
}
mView
=
findViewById
(
R
.
id
.
container
);
mTitle
=
(
TextView
)
findViewById
(
android
.
R
.
id
.
title
);
mSummary
=
(
TextView
)
findViewById
(
android
.
R
.
id
.
summary
);
mIcon
=
(
ImageView
)
findViewById
(
android
.
R
.
id
.
icon
);
mTitle
.
setText
(
title
);
mIcon
.
setImageDrawable
(
icon
);
}
@Override
public
void
setOnClickListener
(
OnClickListener
l
)
{
super
.
setOnClickListener
(
l
);
mView
.
setOnClickListener
(
l
);
}
public
void
setSummary
(
String
s
)
{
mSummary
.
setText
(
s
);
}
public
void
removeSummary
()
{
mSummary
.
setVisibility
(
GONE
);
}
}
\ No newline at end of file
app/src/main/res/drawable/ic_github.xml
0 → 100644
View file @
e18f4c84
<?xml version="1.0" encoding="utf-8"?>
<vector
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:width=
"24.0dip"
android:height=
"24.0dip"
android:viewportHeight=
"24.0"
android:viewportWidth=
"24.0"
>
<path
android:fillColor=
"#757575"
android:pathData=
"M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z"
/>
</vector>
\ No newline at end of file
app/src/main/res/drawable/ic_history.xml
0 → 100644
View file @
e18f4c84
<vector
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:width=
"24dp"
android:height=
"24dp"
android:viewportHeight=
"24.0"
android:viewportWidth=
"24.0"
>
<path
android:fillColor=
"#757575"
android:pathData=
"M13,3c-4.97,0 -9,4.03 -9,9L1,12l3.89,3.89 0.07,0.14L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.28,2.54 0.72,-1.21 -3.5,-2.08L13.5,8L12,8z"
/>
</vector>
app/src/main/res/drawable/ic_info_outline.xml
0 → 100644
View file @
e18f4c84
<vector
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:width=
"24dp"
android:height=
"24dp"
android:viewportHeight=
"24.0"
android:viewportWidth=
"24.0"
>
<path
android:fillColor=
"#757575"
android:pathData=
"M11,17h2v-6h-2v6zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM11,9h2L13,7h-2v2z"
/>
</vector>
app/src/main/res/drawable/ic_language.xml
0 → 100644
View file @
e18f4c84
<vector
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:width=
"24dp"
android:height=
"24dp"
android:viewportHeight=
"24.0"
android:viewportWidth=
"24.0"
>
<path
android:fillColor=
"#757575"
android:pathData=
"M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM18.92,8h-2.95c-0.32,-1.25 -0.78,-2.45 -1.38,-3.56 1.84,0.63 3.37,1.91 4.33,3.56zM12,4.04c0.83,1.2 1.48,2.53 1.91,3.96h-3.82c0.43,-1.43 1.08,-2.76 1.91,-3.96zM4.26,14C4.1,13.36 4,12.69 4,12s0.1,-1.36 0.26,-2h3.38c-0.08,0.66 -0.14,1.32 -0.14,2 0,0.68 0.06,1.34 0.14,2L4.26,14zM5.08,16h2.95c0.32,1.25 0.78,2.45 1.38,3.56 -1.84,-0.63 -3.37,-1.9 -4.33,-3.56zM8.03,8L5.08,8c0.96,-1.66 2.49,-2.93 4.33,-3.56C8.81,5.55 8.35,6.75 8.03,8zM12,19.96c-0.83,-1.2 -1.48,-2.53 -1.91,-3.96h3.82c-0.43,1.43 -1.08,2.76 -1.91,3.96zM14.34,14L9.66,14c-0.09,-0.66 -0.16,-1.32 -0.16,-2 0,-0.68 0.07,-1.35 0.16,-2h4.68c0.09,0.65 0.16,1.32 0.16,2 0,0.68 -0.07,1.34 -0.16,2zM14.59,19.56c0.6,-1.11 1.06,-2.31 1.38,-3.56h2.95c-0.96,1.65 -2.49,2.93 -4.33,3.56zM16.36,14c0.08,-0.66 0.14,-1.32 0.14,-2 0,-0.68 -0.06,-1.34 -0.14,-2h3.38c0.16,0.64 0.26,1.31 0.26,2s-0.1,1.36 -0.26,2h-3.38z"
/>
</vector>
app/src/main/res/drawable/ic_person.xml
0 → 100644
View file @
e18f4c84
<vector
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:width=
"24dp"
android:height=
"24dp"
android:viewportHeight=
"24.0"
android:viewportWidth=
"24.0"
>
<path
android:fillColor=
"#757575"
android:pathData=
"M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4z"
/>
</vector>
app/src/main/res/drawable/ic_xda.xml
0 → 100644
View file @
e18f4c84
<vector
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:width=
"24dp"
android:height=
"24dp"
android:viewportHeight=
"24"
android:viewportWidth=
"24"
>
<path
android:fillColor=
"#757575"
android:pathData=
"M-0.05,16.79L3.19,12.97L-0.05,9.15L1.5,7.86L4.5,11.41L7.5,7.86L9.05,9.15L5.81,12.97L9.05,16.79L7.5,18.07L4.5,14.5L1.5,18.07L-0.05,16.79M24,17A1,1 0 0,1 23,18H20A2,2 0 0,1 18,16V14A2,2 0 0,1 20,12H22V10H18V8H23A1,1 0 0,1 24,9M22,14H20V16H22V14M16,17A1,1 0 0,1 15,18H12A2,2 0 0,1 10,16V10A2,2 0 0,1 12,8H14V5H16V17M14,16V10H12V16H14Z"
/>
</vector>
\ No newline at end of file
app/src/main/res/layout/activity_about.xml
0 → 100644
View file @
e18f4c84
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
>
<include
layout=
"@layout/toolbar"
/>
<ScrollView
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:padding=
"8dp"
tools:ignore=
"UseCompoundDrawables,ContentDescription"
>
<LinearLayout
android:id=
"@android:id/content"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:orientation=
"vertical"
>
<android.support.v7.widget.CardView
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center"
android:layout_marginBottom=
"8dp"
app:cardUseCompatPadding=
"true"
>
<LinearLayout
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"8dp"
android:orientation=
"vertical"
>
<LinearLayout
android:layout_width=
"fill_parent"
android:layout_height=
"72dp"
android:orientation=
"horizontal"
android:padding=
"16dp"
>
<ImageView
android:layout_width=
"48dp"
android:layout_height=
"48dp"
android:layout_gravity=
"center_vertical"
android:src=
"@mipmap/ic_launcher"
/>
<TextView
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center_vertical"
android:paddingLeft=
"16dp"
android:paddingRight=
"16dp"
android:text=
"@string/app_name"
android:textAppearance=
"@style/TextAppearance.AppCompat.Headline"
/>
</LinearLayout>
<com.topjohnwu.magisk.utils.RowItem
android:id=
"@+id/app_version_info"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
app:icon=
"@drawable/ic_info_outline"
app:text=
"@string/app_version"
/>
<com.topjohnwu.magisk.utils.RowItem
android:id=
"@+id/app_changelog"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
app:icon=
"@drawable/ic_history"
app:text=
"@string/app_changelog"
/>
<com.topjohnwu.magisk.utils.RowItem
android:id=
"@+id/app_developers"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
app:icon=
"@drawable/ic_person"
app:text=
"@string/app_developers"
/>
<com.topjohnwu.magisk.utils.RowItem
android:id=
"@+id/app_translators"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
app:icon=
"@drawable/ic_language"
app:text=
"@string/app_translators"
/>
<com.topjohnwu.magisk.utils.RowItem
android:id=
"@+id/app_source_code"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
app:icon=
"@drawable/ic_github"
app:text=
"@string/app_source_code"
/>
</LinearLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center"
android:layout_marginBottom=
"8dp"
app:cardUseCompatPadding=
"true"
>
<com.topjohnwu.magisk.utils.RowItem
android:id=
"@+id/support_thread"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
app:icon=
"@drawable/ic_xda"
app:text=
"@string/support_thread"
/>
</android.support.v7.widget.CardView>
</LinearLayout>
</ScrollView>
</LinearLayout>
\ No newline at end of file
app/src/main/res/layout/activity_welcome.xml
View file @
e18f4c84
...
...
@@ -20,13 +20,7 @@
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
<android.support.v7.widget.Toolbar
android:id=
"@+id/toolbar"
android:layout_width=
"match_parent"
android:layout_height=
"?attr/actionBarSize"
android:background=
"?attr/colorPrimary"
app:popupTheme=
"@style/ThemeOverlay.AppCompat.Light"
app:theme=
"@style/AppTheme.Toolbar"
/>
<include
layout=
"@layout/toolbar"
/>
</FrameLayout>
...
...
app/src/main/res/layout/info_item_row.xml
0 → 100644
View file @
e18f4c84
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2016 dvdandroid
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<LinearLayout
android:id=
"@+id/container"
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:background=
"?android:attr/selectableItemBackground"
android:clickable=
"true"
android:gravity=
"center_vertical"
android:minHeight=
"48dp"
android:orientation=
"horizontal"
android:paddingLeft=
"16dp"
android:paddingRight=
"16dp"
>
<ImageView
android:id=
"@android:id/icon"
android:layout_width=
"24dp"
android:layout_height=
"24dp"
android:tint=
"#757575"
/>
<LinearLayout
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:layout_marginStart=
"32dp"
android:orientation=
"vertical"
android:paddingBottom=
"8dp"
android:paddingTop=
"8dp"
>
<TextView
android:id=
"@android:id/title"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:textAppearance=
"@style/TextAppearance.AppCompat.Subhead"
/>
<TextView
android:id=
"@android:id/summary"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:textAppearance=
"@style/TextAppearance.AppCompat.Caption"
/>
</LinearLayout>
</LinearLayout>
\ No newline at end of file
app/src/main/res/layout/toolbar.xml
0 → 100644
View file @
e18f4c84
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
android:id=
"@+id/toolbar"
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
android:layout_width=
"match_parent"
android:layout_height=
"?attr/actionBarSize"
android:background=
"?attr/colorPrimary"
app:popupTheme=
"@style/ThemeOverlay.AppCompat.Light"
app:theme=
"@style/AppTheme.Toolbar"
/>
\ No newline at end of file
app/src/main/res/menu/drawer.xml
View file @
e18f4c84
<?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<group
android:checkableBehavior=
"single"
>
<group
android:id=
"@+id/main_items"
android:checkableBehavior=
"single"
>
<item
android:id=
"@+id/magisk"
...
...
@@ -20,9 +22,15 @@
</group>
<!--
<group android:checkableBehavior="none">
<group
android:id=
"@+id/option_items"
android:checkableBehavior=
"none"
>
<item
android:id=
"@+id/app_about"
android:icon=
"@drawable/ic_info_outline"
android:title=
"@string/about"
/>
</group>
-->
</menu>
\ No newline at end of file
app/src/main/res/values/attrs.xml
0 → 100644
View file @
e18f4c84
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2016 dvdandroid
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<resources>
<declare-styleable
name=
"RowItem"
>
<attr
name=
"icon"
format=
"reference"
/>
<attr
name=
"text"
format=
"string"
/>
</declare-styleable>
</resources>
\ No newline at end of file
app/src/main/res/values/strings.xml
View file @
e18f4c84
...
...
@@ -37,5 +37,14 @@
<string
name=
"magisk"
>
Magisk
</string>
<string
name=
"remove_file_deleted"
>
Module will not be removed at next reboot
</string>
<string
name=
"cache_modules"
>
Cache modules
</string>
<string
name=
"about"
>
About
</string>
<string
name=
"app_developers"
>
Main developers
</string>
<string
name=
"app_developers_"
>
<![CDATA[App created by <a href="https://github.com/topjohnwu">topjohnwu</a> in collaboration with <a href="https://github.com/dvdandroid">dvdandroid</a>]]>
</string>
<string
name=
"app_changelog"
>
App\'s changelog
</string>
<string
name=
"translators"
/>
<string
name=
"app_version"
>
App\'s version
</string>
<string
name=
"app_source_code"
>
Source code
</string>
<string
name=
"app_translators"
>
App\'s translators
</string>
<string
name=
"support_thread"
>
Support thread
</string>
</resources>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment