├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── mani │ │ └── rc │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── mani │ │ │ └── rc │ │ │ ├── CustomRunnable.java │ │ │ ├── CustomTimer.java │ │ │ ├── MainActivity.java │ │ │ └── RecyclerViewAdapter.java │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── content_main.xml │ │ └── recycler_item.xml │ │ ├── menu │ │ └── menu_main.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 │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── mani │ └── rc │ └── ExampleUnitTest.java ├── art ├── Untitled.gif ├── device-2017-09-05-062715.png └── device-2017-09-05-062727.png ├── build.gradle ├── circle.yml ├── fastlane ├── .gitignore ├── Appfile └── Fastfile ├── 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 | 17 | 18 | -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 36 | 37 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 19 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | Android 39 | 40 | 41 | Android > Lint > Correctness 42 | 43 | 44 | Android > Lint > Correctness > Messages 45 | 46 | 47 | Android > Lint > Internationalization > Bidirectional Text 48 | 49 | 50 | Android > Lint > Lint 51 | 52 | 53 | Android > Lint > Performance 54 | 55 | 56 | Android > Lint > Usability 57 | 58 | 59 | Class structureJava 60 | 61 | 62 | CorrectnessLintAndroid 63 | 64 | 65 | Data flow issuesJava 66 | 67 | 68 | Declaration redundancyJava 69 | 70 | 71 | Dependency issuesJava 72 | 73 | 74 | Error handlingJava 75 | 76 | 77 | Groovy 78 | 79 | 80 | JUnit issuesJava 81 | 82 | 83 | Java 84 | 85 | 86 | LintAndroid 87 | 88 | 89 | Logging issuesJava 90 | 91 | 92 | Memory issuesJava 93 | 94 | 95 | Modularization issuesJava 96 | 97 | 98 | Packaging issuesJava 99 | 100 | 101 | Pattern Validation 102 | 103 | 104 | Portability issuesJava 105 | 106 | 107 | Potentially confusing code constructsGroovy 108 | 109 | 110 | Probable bugsJava 111 | 112 | 113 | Security issuesJava 114 | 115 | 116 | Serialization issuesJava 117 | 118 | 119 | Threading issuesGroovy 120 | 121 | 122 | Threading issuesJava 123 | 124 | 125 | 126 | 127 | Android 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 149 | 150 | 151 | 152 | 153 | 1.8 154 | 155 | 160 | 161 | 162 | 163 | 164 | 165 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TimerInRecyclerView 2 | Handling multiple Countdown timers in Recyclerview 3 | 4 | [![BuddyBuild](https://dashboard.buddybuild.com/api/statusImage?appID=59adee69eb2c3f00012303f4&branch=master&build=latest)](https://dashboard.buddybuild.com/apps/59adee69eb2c3f00012303f4/build/latest?branch=master) 5 | 6 | Inspired from various SO questions, 7 | 8 | [Recyclerview with multiple countdown timers causes flickering] (https://stackoverflow.com/questions/35860780/recyclerview-with-multiple-countdown-timers-causes-flickering) 9 | 10 | [Multiple count down timers in RecyclerView flickering when scrolled] (https://stackoverflow.com/questions/38890863/multiple-count-down-timers-in-recyclerview-flickering-when-scrolled) 11 | 12 | [How to handle multiple countdown timers in RecyclerView?] (https://stackoverflow.com/questions/32257586/how-to-handle-multiple-countdown-timers-in-recyclerview) 13 | 14 | and 15 | [Handling countdown timers in recyclerview - android] (https://stackoverflow.com/questions/38241539/handling-countdown-timers-in-recyclerview-android) 16 | 17 | 18 | # Screenshots 19 | phone image 20 | phone image 21 | 22 | # App Performance 23 | memory monitor 24 | 25 | 26 | # What does this app do? 27 | The aim of the project is to showcase how to handle multiple timer inside the recyclerview and how to clean up the resource. 28 | 29 | # How does app do? 30 | Instead of CountdownTimer/TimerTask app performs count down operation using Runnable and handler. 31 | 32 | # Reasoning 33 | Motivation of the application is to have individual timer for each row, however recycle the timer as same logic as view recycling, 34 | so that there won't be peak memory usage and leading to impact on performance. 35 | 36 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 26 5 | buildToolsVersion "26.0.1" 6 | defaultConfig { 7 | applicationId "com.mani.rc" 8 | minSdkVersion 15 9 | targetSdkVersion 26 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:26.+' 28 | compile 'com.android.support.constraint:constraint-layout:1.0.2' 29 | compile 'com.android.support:design:26.+' 30 | testCompile 'junit:junit:4.12' 31 | compile 'com.jakewharton:butterknife:8.8.1' 32 | annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' 33 | } 34 | -------------------------------------------------------------------------------- /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/manikkumarkumaravel/Downloads/android-sdk-macosx/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/mani/rc/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.mani.rc; 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) public class ExampleInstrumentedTest { 18 | @Test public void useAppContext() throws Exception { 19 | // Context of the app under test. 20 | Context appContext = InstrumentationRegistry.getTargetContext(); 21 | 22 | assertEquals("com.mani.rc", appContext.getPackageName()); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/src/main/java/com/mani/rc/CustomRunnable.java: -------------------------------------------------------------------------------- 1 | package com.mani.rc; 2 | 3 | import android.os.Handler; 4 | import android.util.Log; 5 | import android.widget.ImageView; 6 | import android.widget.TextView; 7 | 8 | public class CustomRunnable implements Runnable { 9 | 10 | public long millisUntilFinished = 40000; 11 | public TextView holder; 12 | Handler handler; 13 | ImageView imageView; 14 | 15 | public CustomRunnable(Handler handler,TextView holder,long millisUntilFinished,ImageView imageView) { 16 | this.handler = handler; 17 | this.holder = holder; 18 | this.millisUntilFinished = millisUntilFinished; 19 | this.imageView = imageView; 20 | } 21 | 22 | @Override 23 | public void run() { 24 | /* do what you need to do */ 25 | long seconds = millisUntilFinished / 1000; 26 | long minutes = seconds / 60; 27 | long hours = minutes / 60; 28 | long days = hours / 24; 29 | String time = days+" "+"days" +" :" +hours % 24 + ":" + minutes % 60 + ":" + seconds % 60; 30 | holder.setText(time); 31 | 32 | millisUntilFinished -= 1000; 33 | 34 | Log.d("DEV123",time); 35 | imageView.setX(imageView.getX()+seconds); 36 | /* and here comes the "trick" */ 37 | handler.postDelayed(this, 1000); 38 | } 39 | 40 | } -------------------------------------------------------------------------------- /app/src/main/java/com/mani/rc/CustomTimer.java: -------------------------------------------------------------------------------- 1 | package com.mani.rc; 2 | 3 | /** 4 | * Created by mani on 03/09/17. 5 | */ 6 | 7 | class CustomTimer { 8 | public long startTime; 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/com/mani/rc/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.mani.rc; 2 | 3 | import android.os.Bundle; 4 | import android.os.CountDownTimer; 5 | import android.os.Handler; 6 | import android.support.design.widget.FloatingActionButton; 7 | import android.support.design.widget.Snackbar; 8 | import android.support.v7.app.AppCompatActivity; 9 | import android.support.v7.widget.RecyclerView; 10 | import android.support.v7.widget.Toolbar; 11 | import android.util.Log; 12 | import android.view.View; 13 | import android.view.Menu; 14 | import android.view.MenuItem; 15 | import android.view.ViewGroup; 16 | import android.widget.TextView; 17 | import butterknife.BindView; 18 | import butterknife.ButterKnife; 19 | 20 | public class MainActivity extends AppCompatActivity { 21 | 22 | TextView holder,holderOne,holderTwo; 23 | //CountDownTimer countDownTimer; 24 | 25 | @BindView(R.id.recycler) RecyclerView recyclerView; 26 | RecyclerViewAdapter recyclerViewAdapter; 27 | @Override protected void onCreate(Bundle savedInstanceState) { 28 | super.onCreate(savedInstanceState); 29 | setContentView(R.layout.activity_main); 30 | ButterKnife.bind(this); 31 | 32 | /* holder = (TextView) findViewById(R.id.timestamp); 33 | holderOne = (TextView) findViewById(R.id.timestamp_one); 34 | holderTwo = (TextView) findViewById(R.id.timestamp_two);*/ 35 | 36 | recyclerViewAdapter = new RecyclerViewAdapter(getApplicationContext(),null,null); 37 | recyclerView.setAdapter(recyclerViewAdapter); 38 | 39 | /*countDownTimer = new CustomTimer(10000, 500); 40 | final CustomRunnable customRunnable = new CustomRunnable(); 41 | final CustomRunnable customRunnableOne = new CustomRunnable(); 42 | final CustomRunnable customRunnableTwo = new CustomRunnable(); 43 | 44 | FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); 45 | 46 | fab.setOnClickListener(new View.OnClickListener() { 47 | @Override public void onClick(View view) { 48 | 49 | //countDownTimer.start(); 50 | 51 | handler.removeCallbacks(customRunnable); 52 | customRunnable.holder = holder; 53 | customRunnable.millisUntilFinished = 4000; //Current time - received time 54 | handler.postDelayed(customRunnable, 100); 55 | 56 | 57 | handler.removeCallbacks(customRunnableOne); 58 | customRunnableOne.holder = holderOne; 59 | customRunnableOne.millisUntilFinished = 50000; //Current time - received time 60 | handler.postDelayed(customRunnableOne, 100); 61 | 62 | 63 | handler.removeCallbacks(customRunnableTwo); 64 | customRunnableTwo.holder = holderTwo; 65 | customRunnableTwo.millisUntilFinished = 99000; //Current time - received time 66 | handler.postDelayed(customRunnableTwo, 100); 67 | } 68 | });*/ 69 | } 70 | 71 | @Override protected void onPause() { 72 | super.onPause(); 73 | //countDownTimer.cancel(); 74 | /*handler.removeCallbacksAndMessages(null); 75 | holder = null;*/ 76 | recyclerViewAdapter.clearAll(); 77 | } 78 | 79 | 80 | /*private Handler handler = new Handler(); 81 | 82 | public class CustomRunnable implements Runnable { 83 | 84 | public long millisUntilFinished = 40000; 85 | public TextView holder; 86 | 87 | @Override 88 | public void run() { 89 | *//* do what you need to do *//* 90 | long seconds = millisUntilFinished / 1000; 91 | long minutes = seconds / 60; 92 | long hours = minutes / 60; 93 | long days = hours / 24; 94 | String time = days+" "+"days" +" :" +hours % 24 + ":" + minutes % 60 + ":" + seconds % 60; 95 | holder.setText(time); 96 | 97 | millisUntilFinished -= 1000; 98 | 99 | Log.d("DEV123",time); 100 | 101 | *//* and here comes the "trick" *//* 102 | handler.postDelayed(this, 1000); 103 | } 104 | 105 | } 106 | 107 | public class CustomTimer extends CountDownTimer{ 108 | 109 | public CustomTimer(long millisInFuture, long countDownInterval) { 110 | super(millisInFuture, countDownInterval); 111 | Log.d("DEV123","Creating new object"); 112 | } 113 | 114 | public void onTick(long millisUntilFinished) { 115 | long seconds = millisUntilFinished / 1000; 116 | long minutes = seconds / 60; 117 | long hours = minutes / 60; 118 | long days = hours / 24; 119 | String time = days+" "+"days" +" :" +hours % 24 + ":" + minutes % 60 + ":" + seconds % 60; 120 | holder.setText(time); 121 | 122 | Log.d("DEV123",time); 123 | } 124 | 125 | public void onFinish() { 126 | holder.setText("Time up!"); 127 | } 128 | }*/ 129 | } 130 | -------------------------------------------------------------------------------- /app/src/main/java/com/mani/rc/RecyclerViewAdapter.java: -------------------------------------------------------------------------------- 1 | package com.mani.rc;/** 2 | * Created by mani on 03/09/17. 3 | */ 4 | 5 | import android.content.Context; 6 | import android.os.CountDownTimer; 7 | import android.os.Handler; 8 | import android.support.v7.widget.RecyclerView; 9 | import android.util.Log; 10 | import android.view.LayoutInflater; 11 | import android.view.View; 12 | import android.view.ViewGroup; 13 | 14 | import android.widget.ImageView; 15 | import android.widget.TextView; 16 | import butterknife.BindView; 17 | import java.util.List; 18 | 19 | import butterknife.ButterKnife; 20 | 21 | public class RecyclerViewAdapter extends RecyclerView.Adapter { 22 | 23 | private static final String TAG = RecyclerViewAdapter.class.getSimpleName(); 24 | 25 | private Context context; 26 | private List list; 27 | private OnItemClickListener onItemClickListener; 28 | private Handler handler = new Handler(); 29 | 30 | public RecyclerViewAdapter(Context context, List list, 31 | OnItemClickListener onItemClickListener) { 32 | this.context = context; 33 | this.list = list; 34 | this.onItemClickListener = onItemClickListener; 35 | } 36 | 37 | public void clearAll() { 38 | handler.removeCallbacksAndMessages(null); 39 | } 40 | 41 | public class ViewHolder extends RecyclerView.ViewHolder { 42 | // Todo Butterknife bindings 43 | @BindView(R.id.timestamp) TextView timeStamp; 44 | @BindView(R.id.bck) ImageView imageView; 45 | CustomRunnable customRunnable; 46 | 47 | public ViewHolder(View itemView) { 48 | super(itemView); 49 | ButterKnife.bind(this, itemView); 50 | customRunnable = new CustomRunnable(handler,timeStamp,10000,imageView); 51 | } 52 | 53 | public void bind(final CustomTimer model, final OnItemClickListener listener) { 54 | /*itemView.setOnClickListener(new View.OnClickListener() { 55 | @Override public void onClick(View v) { 56 | listener.onItemClick(getLayoutPosition()); 57 | } 58 | });*/ 59 | 60 | handler.removeCallbacks(customRunnable); 61 | customRunnable.holder = timeStamp; 62 | customRunnable.millisUntilFinished = 10000 * getAdapterPosition(); //Current time - received time 63 | handler.postDelayed(customRunnable, 100); 64 | 65 | } 66 | } 67 | 68 | 69 | 70 | 71 | @Override public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { 72 | Context context = parent.getContext(); 73 | LayoutInflater inflater = LayoutInflater.from(context); 74 | 75 | View view = inflater.inflate(R.layout.recycler_item, parent, false); 76 | ButterKnife.bind(this, view); 77 | 78 | ViewHolder viewHolder = new ViewHolder(view); 79 | 80 | return viewHolder; 81 | } 82 | 83 | @Override public void onBindViewHolder(ViewHolder holder, int position) { 84 | //CustomTimer item = list.get(position); 85 | 86 | //Todo: Setup viewholder for item 87 | holder.bind(null, onItemClickListener); 88 | } 89 | 90 | @Override public int getItemCount() { 91 | return 100;//list.size(); 92 | } 93 | 94 | public interface OnItemClickListener { 95 | void onItemClick(int position); 96 | } 97 | } 98 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 28 | 29 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/src/main/res/layout/recycler_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manikkumar1988/TimerInRecyclerView/4d17da178d2d3a02621366eb1483e6a74ba72aed/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RecyclerViewTimer 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |