R4SAS
6 years ago
9 changed files with 110 additions and 189 deletions
@ -1,9 +0,0 @@ |
|||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" |
|
||||||
android:width="24dp" |
|
||||||
android:height="24dp" |
|
||||||
android:viewportWidth="24.0" |
|
||||||
android:viewportHeight="24.0"> |
|
||||||
<path |
|
||||||
android:pathData="M14,17L4,17v2h10v-2zM20,9L4,9v2h16L20,9zM4,15h16v-2L4,13v2zM4,5v2h16L20,5L4,5z" |
|
||||||
android:fillColor="#000000"/> |
|
||||||
</vector> |
|
@ -1,48 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
||||||
xmlns:custom="http://schemas.android.com/apk/res-auto" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="match_parent" |
|
||||||
android:orientation="vertical"> |
|
||||||
|
|
||||||
<android.support.v7.widget.Toolbar |
|
||||||
android:id="@+id/toolbar" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="?attr/actionBarSize" |
|
||||||
android:background="?toolbarSettingsBackground" |
|
||||||
android:elevation="2dp" |
|
||||||
android:minHeight="?attr/actionBarSize" |
|
||||||
custom:contentInsetEnd="0dp" |
|
||||||
custom:contentInsetStart="0dp" /> |
|
||||||
|
|
||||||
<ScrollView |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="match_parent"> |
|
||||||
|
|
||||||
<LinearLayout |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:orientation="vertical" |
|
||||||
android:padding="20dp"> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:id="@+id/textViewTitle" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:layout_marginBottom="20dp" |
|
||||||
android:gravity="center_horizontal|center_vertical" |
|
||||||
android:text="Large Text" |
|
||||||
android:textAppearance="?android:attr/textAppearanceLarge" /> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:id="@+id/textViewBody" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:gravity="start" |
|
||||||
android:text="Medium Text" |
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium" /> |
|
||||||
|
|
||||||
</LinearLayout> |
|
||||||
</ScrollView> |
|
||||||
|
|
||||||
</LinearLayout> |
|
@ -1,18 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<menu xmlns:android="http://schemas.android.com/apk/res/android" |
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto" > |
|
||||||
|
|
||||||
<item |
|
||||||
android:id="@+id/invert_item" |
|
||||||
android:icon="@drawable/ic_action_invert" |
|
||||||
android:title="@string/invert_color" |
|
||||||
app:showAsAction="ifRoom"> |
|
||||||
</item> |
|
||||||
<item |
|
||||||
android:id="@+id/text_size_item" |
|
||||||
android:icon="@drawable/ic_action_text_size" |
|
||||||
android:title="@string/size" |
|
||||||
app:showAsAction="ifRoom"> |
|
||||||
</item> |
|
||||||
|
|
||||||
</menu> |
|
@ -1,26 +1,26 @@ |
|||||||
buildscript { |
buildscript { |
||||||
repositories { |
repositories { |
||||||
jcenter() |
jcenter() |
||||||
|
google() |
||||||
} |
} |
||||||
dependencies { |
dependencies { |
||||||
classpath 'com.android.tools.build:gradle:2.3.3' |
classpath 'com.android.tools.build:gradle:3.3.1' |
||||||
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.3' |
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.4' |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
allprojects { |
allprojects { |
||||||
repositories { |
repositories { |
||||||
jcenter() |
jcenter() |
||||||
mavenCentral() |
google() |
||||||
maven { url "https://maven.google.com" } |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
ext { |
ext { |
||||||
minSdkVersion = 14 |
minSdkVersion = 14 |
||||||
targetSdkVersion = 26 |
targetSdkVersion = 28 |
||||||
buildToolsVersion = '26.0.3' |
buildToolsVersion = '28.0.3' |
||||||
|
|
||||||
versionName = '0.1.2' |
versionName = '0.1.2' |
||||||
versionCode = 3 |
versionCode = 125 |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue