├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── patryk1007 │ │ └── example │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── patryk1007 │ │ │ └── example │ │ │ ├── Example2Activity.java │ │ │ ├── Example3Activity.java │ │ │ ├── ExampleActivity.java │ │ │ ├── ExampleAlphaActivity.java │ │ │ └── MenuActivity.java │ └── res │ │ ├── drawable │ │ ├── charge_battery.png │ │ ├── circle_with_shadow.png │ │ ├── drop.png │ │ ├── heart.png │ │ ├── icone.png │ │ ├── icone2.png │ │ ├── icone3.png │ │ └── mess.png │ │ ├── layout │ │ ├── activity_example.xml │ │ ├── activity_example2.xml │ │ ├── activity_example3.xml │ │ ├── activity_example_alpha.xml │ │ └── activity_menu.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── patryk1007 │ └── example │ └── ExampleUnitTest.java ├── build.gradle ├── demo ├── demo1.gif ├── demo2.gif ├── demo3.gif └── google_play.png ├── fillme_lib ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── CMakeLists.txt │ ├── androidTest │ └── java │ │ └── com │ │ └── patryk1007 │ │ └── fillme │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ └── native-lib.cpp │ ├── java │ │ └── com │ │ │ └── patryk1007 │ │ │ └── fillme │ │ │ ├── FillMe.java │ │ │ ├── calculations │ │ │ ├── AllShapesLinesCalculations.java │ │ │ ├── ConvexLinesCalculation.java │ │ │ ├── FloodFillLinesCalculationAsync.java │ │ │ ├── FloodFillLinesCalculationSync.java │ │ │ └── LinesCalculation.java │ │ │ ├── enums │ │ │ └── FillMode.java │ │ │ ├── listeners │ │ │ ├── OnFillChangeListener.java │ │ │ └── OnFillLineCalculationListener.java │ │ │ └── models │ │ │ └── FillLine.java │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── patryk1007 │ └── fillme │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FillMe 2 | We are very pleased to present FillMe, the library to fill literally every shape with color. 3 | 4 | Enjoy! :) 5 | 6 | ![FillMe Demo](demo/demo1.gif)   ![FillMe Demo2](demo/demo3.gif) 7 | 8 | ### Try now 9 | 10 | [![Google Play](demo/google_play.png)](https://play.google.com/store/apps/details?id=com.patryk1007.fillme) 11 | 12 | # Usage 13 | 14 | Add the FillMe view the same way like other Android views. 15 | 16 | ```xml 17 | 29 | 30 | ``` 31 | # Download 32 | 33 | compile 'com.patryk1007:fillme_lib:1.0' 34 | 35 | 36 | # Attributes 37 | 38 | 39 | | attr | description |Default 40 | |:---|:---|:---| 41 | | fmImage | set drawable resource id, e.g. app:fmImage="@drawable/my_super_image" |-| 42 | | fmAlphaLevel | the view detects a shape's lines by checking alpha color, manage this value if your shape has shadows, range: 0-255 | 122 | 43 | | fmFillHorizontalPercent | set the horizontal fill in percents, range: 0-1| 0 | 44 | | fmFillVerticalPercent | set the vertical fill, in percents, range: 0-1| 0 | 45 | | fmFillByTouch | set changing fill percent by touch image, values: none; horizontal; vertical; both; | none | 46 | | fmConvexFigure | set true if shape is convex| true | 47 | | fmAsyncCalculation | if the image is big - calculation takes time, set the value to true to avoid problems with stop the main thread ( used only if shape is concave)| true | 48 | | fmFillColour | set a fill color as int value| #00ff00 | 49 | 50 | # LICENSE 51 | 52 | ``` 53 | Copyright (C) 2018 patryk1007 54 | 55 | Licensed under the Apache License, Version 2.0 (the "License"); 56 | you may not use this file except in compliance with the License. 57 | You may obtain a copy of the License at 58 | 59 | http://www.apache.org/licenses/LICENSE-2.0 60 | 61 | Unless required by applicable law or agreed to in writing, software 62 | distributed under the License is distributed on an "AS IS" BASIS, 63 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 64 | See the License for the specific language governing permissions and 65 | limitations under the License. 66 | ``` 67 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 25 5 | buildToolsVersion '26.0.2' 6 | defaultConfig { 7 | applicationId "com.patryk1007.fillme" 8 | minSdkVersion 14 9 | targetSdkVersion 25 10 | versionCode 1 11 | versionName "1.0" 12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 25 | exclude group: 'com.android.support', module: 'support-annotations' 26 | }) 27 | compile 'com.android.support:appcompat-v7:25.4.0' 28 | compile 'com.android.support.constraint:constraint-layout:1.0.2' 29 | testCompile 'junit:junit:4.12' 30 | compile project(path: ':fillme_lib') 31 | } 32 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/patrykmolka/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Uncomment this to preserve the line number information for 20 | # debugging stack traces. 21 | #-keepattributes SourceFile,LineNumberTable 22 | 23 | # If you keep the line number information, uncomment this to 24 | # hide the original source file name. 25 | #-renamesourcefileattribute SourceFile 26 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/patryk1007/example/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.patryk1007.example; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.patryk1007.fillme", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/java/com/patryk1007/example/Example2Activity.java: -------------------------------------------------------------------------------- 1 | package com.patryk1007.example; 2 | 3 | import android.graphics.BitmapFactory; 4 | import android.os.Bundle; 5 | import android.support.v7.app.AppCompatActivity; 6 | import android.widget.CheckBox; 7 | import android.widget.CompoundButton; 8 | 9 | import com.patryk1007.fillme.FillMe; 10 | import com.patryk1007.fillme.enums.FillMode; 11 | 12 | public class Example2Activity extends AppCompatActivity { 13 | 14 | CheckBox fillVertical; 15 | CheckBox fillHorizontal; 16 | FillMe fillMeView; 17 | 18 | @Override 19 | protected void onCreate(Bundle savedInstanceState) { 20 | super.onCreate(savedInstanceState); 21 | setContentView(R.layout.activity_example2); 22 | initView(); 23 | } 24 | 25 | private void initView() { 26 | fillMeView = (FillMe) findViewById(R.id.fill_me_view); 27 | fillMeView.setConvexFigure(false); 28 | fillMeView.setFillMode(FillMode.BOTH); 29 | fillMeView.setFillPercentHorizontalAndVertical(1.0f, 1.0f); 30 | fillMeView.setImage(BitmapFactory.decodeResource(getResources(), 31 | R.drawable.mess)); 32 | 33 | fillVertical = (CheckBox) findViewById(R.id.fill_vertical_checkbox); 34 | fillVertical.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { 35 | @Override 36 | public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { 37 | fillMeView.setFillMode(getMode()); 38 | } 39 | }); 40 | 41 | fillHorizontal = (CheckBox) findViewById(R.id.fill_horizontal_checkbox); 42 | fillHorizontal.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { 43 | @Override 44 | public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { 45 | fillMeView.setFillMode(getMode()); 46 | } 47 | }); 48 | 49 | } 50 | 51 | private FillMode getMode() { 52 | if (fillVertical.isChecked() && fillHorizontal.isChecked()) { 53 | return FillMode.BOTH; 54 | } 55 | if (fillVertical.isChecked()) { 56 | return FillMode.VERTICAL; 57 | } 58 | if (fillHorizontal.isChecked()) { 59 | return FillMode.HORIZONTAL; 60 | } 61 | return FillMode.NONE; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /app/src/main/java/com/patryk1007/example/Example3Activity.java: -------------------------------------------------------------------------------- 1 | package com.patryk1007.example; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | 6 | public class Example3Activity extends AppCompatActivity { 7 | 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.activity_example3); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/patryk1007/example/ExampleActivity.java: -------------------------------------------------------------------------------- 1 | package com.patryk1007.example; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | import android.view.View; 6 | import android.widget.SeekBar; 7 | import android.widget.TextView; 8 | 9 | import com.patryk1007.fillme.FillMe; 10 | import com.patryk1007.fillme.listeners.OnFillChangeListener; 11 | 12 | public class ExampleActivity extends AppCompatActivity { 13 | 14 | SeekBar fillVertical; 15 | SeekBar fillHorizontal; 16 | TextView fillVerticalInfo; 17 | TextView fillHorizontalInfo; 18 | FillMe fillMeView; 19 | 20 | @Override 21 | protected void onCreate(Bundle savedInstanceState) { 22 | super.onCreate(savedInstanceState); 23 | setContentView(R.layout.activity_example); 24 | initView(); 25 | } 26 | 27 | private void initView() { 28 | fillHorizontalInfo = (TextView) findViewById(R.id.fill_horizontal_info); 29 | fillVerticalInfo = (TextView) findViewById(R.id.fill_vertical_info); 30 | 31 | fillMeView = (FillMe) findViewById(R.id.fill_me_view); 32 | fillMeView.setImageDrawableId(R.drawable.icone); 33 | fillMeView.setFillPercentHorizontalAndVertical(0, 0); 34 | 35 | fillMeView.setOnFillChangeListener(new OnFillChangeListener() { 36 | @Override 37 | public void onHorizontalValueChange(float fillPercent, int fillPx) { 38 | fillHorizontalInfo.setText(String.format(getString(R.string.fill_horizontal_info), String.valueOf(fillPercent), String.valueOf(fillPx))); 39 | } 40 | 41 | @Override 42 | public void onVerticalValueChange(float fillPercent, int fillPx) { 43 | fillVerticalInfo.setText(String.format(getString(R.string.fill_vertical_info), String.valueOf(fillPercent), String.valueOf(fillPx))); 44 | } 45 | }); 46 | 47 | fillVertical = (SeekBar) findViewById(R.id.fill_vertical_percent); 48 | fillVertical.setMax(100); 49 | fillVertical.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { 50 | @Override 51 | public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { 52 | fillMeView.setFillPercentVertical(progress / 100.0f); 53 | } 54 | 55 | @Override 56 | public void onStartTrackingTouch(SeekBar seekBar) { 57 | 58 | } 59 | 60 | @Override 61 | public void onStopTrackingTouch(SeekBar seekBar) { 62 | 63 | } 64 | }); 65 | 66 | fillHorizontal = (SeekBar) findViewById(R.id.fill_horizontal_percent); 67 | fillHorizontal.setMax(100); 68 | fillHorizontal.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { 69 | @Override 70 | public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { 71 | fillMeView.setFillPercentHorizontal(progress / 100.0f); 72 | } 73 | 74 | @Override 75 | public void onStartTrackingTouch(SeekBar seekBar) { 76 | 77 | } 78 | 79 | @Override 80 | public void onStopTrackingTouch(SeekBar seekBar) { 81 | 82 | } 83 | }); 84 | 85 | findViewById(R.id.colour_blue).setOnClickListener(new View.OnClickListener() { 86 | @Override 87 | public void onClick(View v) { 88 | fillMeView.setFillColour(0xff0099cc); 89 | } 90 | }); 91 | 92 | findViewById(R.id.colour_red).setOnClickListener(new View.OnClickListener() { 93 | @Override 94 | public void onClick(View v) { 95 | fillMeView.setFillColour(0xffff4444); 96 | } 97 | }); 98 | 99 | findViewById(R.id.colour_green).setOnClickListener(new View.OnClickListener() { 100 | @Override 101 | public void onClick(View v) { 102 | fillMeView.setFillColour(0xff99cc00); 103 | } 104 | }); 105 | 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /app/src/main/java/com/patryk1007/example/ExampleAlphaActivity.java: -------------------------------------------------------------------------------- 1 | package com.patryk1007.example; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | import android.widget.SeekBar; 6 | import android.widget.TextView; 7 | 8 | import com.patryk1007.fillme.FillMe; 9 | 10 | public class ExampleAlphaActivity extends AppCompatActivity { 11 | 12 | SeekBar fillHorizontal; 13 | TextView alphaLevelInfo; 14 | FillMe fillMeView; 15 | 16 | @Override 17 | protected void onCreate(Bundle savedInstanceState) { 18 | super.onCreate(savedInstanceState); 19 | setContentView(R.layout.activity_example_alpha); 20 | initView(); 21 | } 22 | 23 | private void initView() { 24 | alphaLevelInfo = (TextView) findViewById(R.id.fill_horizontal_info); 25 | 26 | fillMeView = (FillMe) findViewById(R.id.fill_me_view); 27 | fillMeView.setImageDrawableId(R.drawable.circle_with_shadow); 28 | 29 | fillHorizontal = (SeekBar) findViewById(R.id.fill_horizontal_percent); 30 | fillHorizontal.setMax(255); 31 | fillHorizontal.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { 32 | @Override 33 | public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { 34 | fillMeView.setAlphaLevel(progress); 35 | alphaLevelInfo.setText(String.format(getString(R.string.fill_alpha_info), String.valueOf(progress))); 36 | } 37 | 38 | @Override 39 | public void onStartTrackingTouch(SeekBar seekBar) { 40 | 41 | } 42 | 43 | @Override 44 | public void onStopTrackingTouch(SeekBar seekBar) { 45 | 46 | } 47 | }); 48 | 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /app/src/main/java/com/patryk1007/example/MenuActivity.java: -------------------------------------------------------------------------------- 1 | package com.patryk1007.example; 2 | 3 | import android.content.Intent; 4 | import android.os.Bundle; 5 | import android.support.annotation.Nullable; 6 | import android.support.v7.app.AppCompatActivity; 7 | import android.view.View; 8 | 9 | public class MenuActivity extends AppCompatActivity { 10 | 11 | 12 | @Override 13 | protected void onCreate(@Nullable Bundle savedInstanceState) { 14 | super.onCreate(savedInstanceState); 15 | setContentView(R.layout.activity_menu); 16 | 17 | findViewById(R.id.example1_button).setOnClickListener(new View.OnClickListener() { 18 | @Override 19 | public void onClick(View v) { 20 | startActivity(new Intent(MenuActivity.this, ExampleActivity.class)); 21 | } 22 | }); 23 | 24 | findViewById(R.id.example2_button).setOnClickListener(new View.OnClickListener() { 25 | @Override 26 | public void onClick(View v) { 27 | startActivity(new Intent(MenuActivity.this, Example2Activity.class)); 28 | } 29 | }); 30 | 31 | findViewById(R.id.example3_button).setOnClickListener(new View.OnClickListener() { 32 | @Override 33 | public void onClick(View v) { 34 | startActivity(new Intent(MenuActivity.this, Example3Activity.class)); 35 | } 36 | }); 37 | findViewById(R.id.example_alpha_button).setOnClickListener(new View.OnClickListener() { 38 | @Override 39 | public void onClick(View v) { 40 | startActivity(new Intent(MenuActivity.this, ExampleAlphaActivity.class)); 41 | } 42 | }); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/charge_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patryk1007/Fillme/df4c28ebc9f3ebc002f102fb7cf6bbb5be1d09a9/app/src/main/res/drawable/charge_battery.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_with_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patryk1007/Fillme/df4c28ebc9f3ebc002f102fb7cf6bbb5be1d09a9/app/src/main/res/drawable/circle_with_shadow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patryk1007/Fillme/df4c28ebc9f3ebc002f102fb7cf6bbb5be1d09a9/app/src/main/res/drawable/drop.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patryk1007/Fillme/df4c28ebc9f3ebc002f102fb7cf6bbb5be1d09a9/app/src/main/res/drawable/heart.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/icone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patryk1007/Fillme/df4c28ebc9f3ebc002f102fb7cf6bbb5be1d09a9/app/src/main/res/drawable/icone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/icone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patryk1007/Fillme/df4c28ebc9f3ebc002f102fb7cf6bbb5be1d09a9/app/src/main/res/drawable/icone2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/icone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patryk1007/Fillme/df4c28ebc9f3ebc002f102fb7cf6bbb5be1d09a9/app/src/main/res/drawable/icone3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patryk1007/Fillme/df4c28ebc9f3ebc002f102fb7cf6bbb5be1d09a9/app/src/main/res/drawable/mess.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_example.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | 22 | 23 | 28 | 29 | 36 | 37 | 42 | 43 | 48 | 49 | 55 | 56 | 62 | 63 | 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_example2.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 17 | 18 | 25 | 26 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_example3.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 15 | 16 | 28 | 29 | 40 | 41 | 44 | 45 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_example_alpha.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 18 | 19 | 26 | 27 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 |