From cf7db935ee6f0ec42a8eb25468d05bc12ad770e8 Mon Sep 17 00:00:00 2001 From: Kondareddy Date: Wed, 12 Jul 2017 18:56:49 +0530 Subject: [PATCH] Initial commit --- .gitignore | 9 + .idea/compiler.xml | 22 +++ .idea/copyright/profiles_settings.xml | 3 + .idea/gradle.xml | 18 ++ .idea/misc.xml | 62 +++++++ .idea/modules.xml | 9 + .idea/runConfigurations.xml | 12 ++ app/.gitignore | 1 + app/build.gradle | 30 ++++ app/proguard-rules.pro | 25 +++ .../ExampleInstrumentedTest.java | 26 +++ app/src/main/AndroidManifest.xml | 21 +++ .../example/myapplication/MainActivity.java | 60 +++++++ .../NotificationListAdapter.java | 74 ++++++++ .../myapplication/NotificationModel.java | 26 +++ app/src/main/res/layout/activity_main.xml | 16 ++ app/src/main/res/layout/item_notification.xml | 27 +++ app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3418 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 4208 bytes app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2206 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2555 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4842 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 6114 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7718 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 10056 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10486 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 14696 bytes app/src/main/res/values/colors.xml | 6 + app/src/main/res/values/strings.xml | 3 + app/src/main/res/values/styles.xml | 11 ++ .../myapplication/ExampleUnitTest.java | 17 ++ build.gradle | 23 +++ gradle.properties | 17 ++ gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 53636 bytes gradle/wrapper/gradle-wrapper.properties | 6 + gradlew | 160 ++++++++++++++++++ gradlew.bat | 90 ++++++++++ settings.gradle | 1 + 38 files changed, 775 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/runConfigurations.xml create mode 100644 app/.gitignore create mode 100644 app/build.gradle create mode 100644 app/proguard-rules.pro create mode 100644 app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java create mode 100644 app/src/main/AndroidManifest.xml create mode 100644 app/src/main/java/com/example/myapplication/MainActivity.java create mode 100755 app/src/main/java/com/example/myapplication/NotificationListAdapter.java create mode 100644 app/src/main/java/com/example/myapplication/NotificationModel.java create mode 100644 app/src/main/res/layout/activity_main.xml create mode 100755 app/src/main/res/layout/item_notification.xml create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/styles.xml create mode 100644 app/src/test/java/com/example/myapplication/ExampleUnitTest.java create mode 100644 build.gradle create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..39fb081 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.iml +.gradle +/local.properties +/.idea/workspace.xml +/.idea/libraries +.DS_Store +/build +/captures +.externalNativeBuild diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..96cc43e --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..7ac24c7 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,18 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..7158618 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..4c85a98 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..796b96d --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..6be7509 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,30 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 26 + buildToolsVersion "26.0.0" + defaultConfig { + applicationId "com.example.myapplication" + minSdkVersion 15 + targetSdkVersion 26 + versionCode 1 + versionName "1.0" + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + compile fileTree(dir: 'libs', include: ['*.jar']) + androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { + exclude group: 'com.android.support', module: 'support-annotations' + }) + compile 'com.android.support:appcompat-v7:26.+' + compile 'com.android.support.constraint:constraint-layout:1.0.2' + testCompile 'junit:junit:4.12' +} diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..40344da --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,25 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in /Users/kondareddy/Library/Android/sdk/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java new file mode 100644 index 0000000..24ffb07 --- /dev/null +++ b/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.example.myapplication; + +import android.content.Context; +import android.support.test.InstrumentationRegistry; +import android.support.test.runner.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumentation test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() throws Exception { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getTargetContext(); + + assertEquals("com.example.myapplication", appContext.getPackageName()); + } +} diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..94e0e73 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/example/myapplication/MainActivity.java b/app/src/main/java/com/example/myapplication/MainActivity.java new file mode 100644 index 0000000..32afb0b --- /dev/null +++ b/app/src/main/java/com/example/myapplication/MainActivity.java @@ -0,0 +1,60 @@ +package com.example.myapplication; + +import android.content.DialogInterface; +import android.os.Bundle; +import android.support.v7.app.AlertDialog; +import android.support.v7.app.AppCompatActivity; +import android.view.View; +import android.widget.Button; + +import java.util.ArrayList; +import java.util.List; + +public class MainActivity extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + Button button = (Button) findViewById(R.id.button1); + button.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View view) { + + // Here I add static data... + List notificationModels = new ArrayList(); + + notificationModels.add(new NotificationModel(1, "ONE", "12 July 2017 06:30 PM")); + notificationModels.add(new NotificationModel(2, "TWO", "12 July 2017 06:30 PM")); + notificationModels.add(new NotificationModel(3, "THREE", "12 July 2017 06:30 PM")); + notificationModels.add(new NotificationModel(4, "FOUR", "12 July 2017 06:30 PM")); + notificationModels.add(new NotificationModel(5, "FIVE", "12 July 2017 06:30 PM")); + notificationModels.add(new NotificationModel(6, "SIX", "12 July 2017 06:30 PM")); + notificationModels.add(new NotificationModel(7, "SEVEN", "12 July 2017 06:30 PM")); + + AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(MainActivity.this); + alertDialogBuilder.setTitle("Awesome alert") + .setCancelable(false) + .setAdapter(new NotificationListAdapter(MainActivity.this, notificationModels), new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + + // on item click... + + dialog.cancel(); + } + }) + .setPositiveButton("Close", new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + + dialog.cancel(); + + } + }); + AlertDialog alertDialog = alertDialogBuilder.create(); + alertDialog.show(); + + } + }); + } +} diff --git a/app/src/main/java/com/example/myapplication/NotificationListAdapter.java b/app/src/main/java/com/example/myapplication/NotificationListAdapter.java new file mode 100755 index 0000000..71d41b5 --- /dev/null +++ b/app/src/main/java/com/example/myapplication/NotificationListAdapter.java @@ -0,0 +1,74 @@ +package com.example.myapplication; + +import android.app.Activity; +import android.content.Context; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.BaseAdapter; +import android.widget.LinearLayout; +import android.widget.TextView; + +import java.util.List; + +public class NotificationListAdapter extends BaseAdapter { + + private Context mContext; + private List notificationModels; + + public NotificationListAdapter(Context mContext, List notificationModels) { + this.mContext = mContext; + this.notificationModels = notificationModels; + } + + @Override + public int getCount() { + return notificationModels.size(); + } + + @Override + public NotificationModel getItem(int i) { + return notificationModels.get(i); + } + + @Override + public long getItemId(int i) { + return i; + } + + @Override + public View getView(int position, View view, ViewGroup viewGroup) { + + NotificationViewHolder notificationViewHolder; + + if (view == null) { + + LayoutInflater mInflater = (LayoutInflater) mContext.getSystemService(Activity.LAYOUT_INFLATER_SERVICE); + view = mInflater.inflate(R.layout.item_notification, null); + + notificationViewHolder = new NotificationViewHolder(); + + notificationViewHolder.item_view = (LinearLayout) view.findViewById(R.id.notification_item); + notificationViewHolder.textView_notification = (TextView) view.findViewById(R.id.tv_notification); + notificationViewHolder.textView_time = (TextView) view.findViewById(R.id.tv_notification_time); + + view.setTag(notificationViewHolder); + + } else { + notificationViewHolder = (NotificationViewHolder) view.getTag(); + } + + NotificationModel notificationModel = getItem(position); + + notificationViewHolder.textView_notification.setText(notificationModel.getNotificationText()); + notificationViewHolder.textView_time.setText(notificationModel.getTimeStamp()); + + return view; + } + + private class NotificationViewHolder { + LinearLayout item_view; + TextView textView_notification, textView_time; + } + +} diff --git a/app/src/main/java/com/example/myapplication/NotificationModel.java b/app/src/main/java/com/example/myapplication/NotificationModel.java new file mode 100644 index 0000000..96783c4 --- /dev/null +++ b/app/src/main/java/com/example/myapplication/NotificationModel.java @@ -0,0 +1,26 @@ +package com.example.myapplication; + +public class NotificationModel { + + private Integer id; + private String notificationText; + private String timeStamp; + + public NotificationModel(Integer id, String notificationText, String timeStamp) { + this.id = id; + this.notificationText = notificationText; + this.timeStamp = timeStamp; + } + + public Integer getId() { + return id; + } + + public String getNotificationText() { + return notificationText; + } + + public String getTimeStamp() { + return timeStamp; + } +} \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..4296087 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,16 @@ + + + +