├── bin ├── SMS.apk ├── classes.dex ├── resources.ap_ ├── classes │ └── com │ │ ├── example │ │ └── sms │ │ │ ├── R.class │ │ │ ├── Prefs.class │ │ │ ├── R$id.class │ │ │ ├── R$xml.class │ │ │ ├── list.class │ │ │ ├── sect.class │ │ │ ├── DBHelper.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── details.class │ │ │ ├── list$1.class │ │ │ ├── sect$1.class │ │ │ ├── sender$1.class │ │ │ ├── sender.class │ │ │ ├── FragmentA.class │ │ │ ├── FragmentB.class │ │ │ ├── MyAdapter.class │ │ │ ├── R$drawable.class │ │ │ ├── details$1.class │ │ │ ├── individual.class │ │ │ ├── AddNewStudent.class │ │ │ ├── BuildConfig.class │ │ │ ├── FragmentA$1.class │ │ │ ├── FragmentA$2.class │ │ │ ├── FragmentB$1.class │ │ │ ├── FragmentB$2.class │ │ │ ├── GroupActivity.class │ │ │ ├── MainActivity.class │ │ │ ├── R$styleable.class │ │ │ ├── ChangePassword.class │ │ │ ├── SecondActivity.class │ │ │ ├── ChangePassword$1.class │ │ │ ├── IndividualActivity.class │ │ │ ├── SecondActivity$1.class │ │ │ ├── util │ │ │ ├── SystemUiHider.class │ │ │ ├── SystemUiHider$1.class │ │ │ ├── SystemUiHiderBase.class │ │ │ ├── SystemUiHiderHoneycomb.class │ │ │ ├── SystemUiHiderHoneycomb$1.class │ │ │ └── SystemUiHider$OnVisibilityChangeListener.class │ │ │ ├── CourseDetailActivity.class │ │ │ ├── GroupDetailActivity.class │ │ │ └── IndividualDetailActivity.class │ │ └── beardedhen │ │ └── androidbootstrap │ │ ├── R.class │ │ ├── R$id.class │ │ ├── R$attr.class │ │ ├── R$color.class │ │ ├── R$dimen.class │ │ ├── R$menu.class │ │ ├── R$style.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── R$drawable.class │ │ └── R$styleable.class ├── res │ └── crunch │ │ ├── drawable-xhdpi │ │ ├── a1.png │ │ ├── subscribe.png │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ ├── edit.png │ │ ├── multiuser.png │ │ ├── student1.png │ │ ├── ic_launcher.png │ │ ├── singleuser.png │ │ └── singleusera.png │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ └── drawable-mdpi │ │ └── ic_launcher.png ├── dexedLibs │ ├── androidbootstrap-d6cc900d4c86e67ab617c01eb43ba571.jar │ └── android-support-v4-ed5fbf114df310aecfef3fb976e6d67d.jar ├── jarlist.cache ├── AndroidManifest.xml └── R.txt ├── ic_launcher-web.png ├── res ├── menu │ ├── group.xml │ ├── main.xml │ ├── change_password.xml │ ├── course_detail.xml │ ├── group_detail.xml │ ├── individual.xml │ ├── add_new_student.xml │ ├── individual_detail.xml │ └── second.xml ├── values │ ├── colors.xml │ ├── dimens.xml │ ├── attrs.xml │ ├── styles.xml │ └── strings.xml ├── drawable-xhdpi │ ├── a1.png │ ├── subscribe.png │ └── ic_launcher.png ├── drawable-xxhdpi │ ├── edit.png │ ├── student1.png │ ├── multiuser.png │ ├── singleuser.png │ ├── ic_launcher.png │ └── singleusera.png ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── layout │ ├── activity_second.xml │ ├── activity_individual.xml │ ├── activity_group.xml │ ├── activity_course_detail.xml │ ├── row_individual.xml │ ├── fragment_a.xml │ ├── activity_main.xml │ ├── fragment_b.xml │ ├── activity_add_new_student.xml │ ├── activity_change_password.xml │ ├── activity_group_detail.xml │ └── activity_individual_detail.xml ├── xml │ └── pref.xml ├── values-v14 │ └── styles.xml └── values-v11 │ └── styles.xml ├── libs └── android-support-v4.jar ├── assets └── fontawesome-webfont.ttf ├── gen └── com │ ├── example │ └── sms │ │ └── BuildConfig.java │ └── beardedhen │ └── androidbootstrap │ └── R.java ├── .settings └── org.eclipse.jdt.core.prefs ├── README.md ├── src └── com │ └── example │ └── sms │ ├── Prefs.java │ ├── CourseDetailActivity.java │ ├── individual.java │ ├── util │ ├── SystemUiHiderBase.java │ ├── SystemUiHiderHoneycomb.java │ └── SystemUiHider.java │ ├── ListAdapter.java │ ├── AddNewStudent.java │ ├── ChangePassword.java │ ├── GroupDetailActivity.java │ ├── SecondActivity.java │ ├── GroupActivity.java │ ├── IndividualActivity.java │ ├── FragmentB.java │ ├── MainActivity.java │ ├── FragmentA.java │ ├── IndividualDetailActivity.java │ └── DBHelper.java ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project └── AndroidManifest.xml /bin/SMS.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/SMS.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /res/menu/group.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #66000000 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/menu/change_password.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/menu/course_detail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-xhdpi/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-xhdpi/a1.png -------------------------------------------------------------------------------- /res/menu/group_detail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/menu/individual.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable-xxhdpi/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-xxhdpi/edit.png -------------------------------------------------------------------------------- /res/menu/add_new_student.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/assets/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /res/drawable-xhdpi/subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-xhdpi/subscribe.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/student1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-xxhdpi/student1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/multiuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-xxhdpi/multiuser.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/singleuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-xxhdpi/singleuser.png -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R.class -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-xhdpi/a1.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/singleusera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/res/drawable-xxhdpi/singleusera.png -------------------------------------------------------------------------------- /bin/classes/com/example/sms/Prefs.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/Prefs.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$xml.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/list.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/list.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/sect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/sect.class -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-xxhdpi/edit.png -------------------------------------------------------------------------------- /bin/classes/com/example/sms/DBHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/DBHelper.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$color.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/details.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/details.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/list$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/list$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/sect$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/sect$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/sender$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/sender$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/sender.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/sender.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/FragmentA.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/FragmentA.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/FragmentB.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/FragmentB.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/MyAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/MyAdapter.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/details$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/details$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/individual.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/individual.class -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-xhdpi/subscribe.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/multiuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-xxhdpi/multiuser.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/student1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-xxhdpi/student1.png -------------------------------------------------------------------------------- /bin/classes/com/example/sms/AddNewStudent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/AddNewStudent.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/FragmentA$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/FragmentA$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/FragmentA$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/FragmentA$2.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/FragmentB$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/FragmentB$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/FragmentB$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/FragmentB$2.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/GroupActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/GroupActivity.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/R$styleable.class -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/singleuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-xxhdpi/singleuser.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/singleusera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/res/crunch/drawable-xxhdpi/singleusera.png -------------------------------------------------------------------------------- /bin/classes/com/example/sms/ChangePassword.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/ChangePassword.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/SecondActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/SecondActivity.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/ChangePassword$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/ChangePassword$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/IndividualActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/IndividualActivity.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/SecondActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/SecondActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/util/SystemUiHider.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/util/SystemUiHider.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/CourseDetailActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/CourseDetailActivity.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/GroupDetailActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/GroupDetailActivity.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/util/SystemUiHider$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/util/SystemUiHider$1.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$color.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/util/SystemUiHiderBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/util/SystemUiHiderBase.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/IndividualDetailActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/IndividualDetailActivity.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/beardedhen/androidbootstrap/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/beardedhen/androidbootstrap/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/util/SystemUiHiderHoneycomb.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/util/SystemUiHiderHoneycomb.class -------------------------------------------------------------------------------- /bin/classes/com/example/sms/util/SystemUiHiderHoneycomb$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/util/SystemUiHiderHoneycomb$1.class -------------------------------------------------------------------------------- /bin/dexedLibs/androidbootstrap-d6cc900d4c86e67ab617c01eb43ba571.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/dexedLibs/androidbootstrap-d6cc900d4c86e67ab617c01eb43ba571.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-ed5fbf114df310aecfef3fb976e6d67d.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/dexedLibs/android-support-v4-ed5fbf114df310aecfef3fb976e6d67d.jar -------------------------------------------------------------------------------- /gen/com/example/sms/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.sms; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /bin/classes/com/example/sms/util/SystemUiHider$OnVisibilityChangeListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmoljagetia/Student-Management-System/HEAD/bin/classes/com/example/sms/util/SystemUiHider$OnVisibilityChangeListener.class -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Student-Management-System 2 | ========================= 3 | 4 | This is an Android Implementation of a Student Monitoring system that teachers can use to keep track of their students. This was done as part of the DBMS-432 course. The app has been designed for Samsung Galaxy S3 or similiar xhdpi devices. 5 | -------------------------------------------------------------------------------- /res/menu/individual_detail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/layout/activity_second.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /res/xml/pref.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1396001580405 621451 5896b0a4e377ac4242eb2bc785220c1c4fc052f4 C:\Users\Anmol Jagetia\workspace\SMS\libs\android-support-v4.jar 5 | 1390246914791 621451 5896b0a4e377ac4242eb2bc785220c1c4fc052f4 C:\Users\Anmol Jagetia\workspace\AndroidBootstrap\libs\android-support-v4.jar 6 | -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/com/example/sms/Prefs.java: -------------------------------------------------------------------------------- 1 | package com.example.sms; 2 | 3 | import android.os.Bundle; 4 | import android.preference.PreferenceActivity; 5 | 6 | public class Prefs extends PreferenceActivity { 7 | @SuppressWarnings("deprecation") 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | // TODO Auto-generated method stub 11 | super.onCreate(savedInstanceState); 12 | addPreferencesFromResource(R.xml.pref); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/layout/activity_individual.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /res/layout/activity_group.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /res/layout/activity_course_detail.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/com/example/sms/CourseDetailActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.sms; 2 | 3 | import android.os.Bundle; 4 | import android.app.Activity; 5 | import android.view.Menu; 6 | 7 | public class CourseDetailActivity extends Activity { 8 | 9 | @Override 10 | protected void onCreate(Bundle savedInstanceState) { 11 | super.onCreate(savedInstanceState); 12 | setContentView(R.layout.activity_course_detail); 13 | } 14 | 15 | @Override 16 | public boolean onCreateOptionsMenu(Menu menu) { 17 | // Inflate the menu; this adds items to the action bar if it is present. 18 | getMenuInflater().inflate(R.menu.course_detail, menu); 19 | return true; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /res/menu/second.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 13 | 14 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | android.library=false 16 | android.library.reference.1=../AndroidBootstrap 17 | -------------------------------------------------------------------------------- /src/com/example/sms/individual.java: -------------------------------------------------------------------------------- 1 | package com.example.sms; 2 | 3 | public class individual { 4 | private String ID; 5 | private String name; 6 | private String classID; 7 | 8 | public individual(){ 9 | 10 | } 11 | 12 | public individual(String i, String n, String c){ 13 | this.ID = i; 14 | this.name = n; 15 | this.classID = c; 16 | } 17 | 18 | public String getID() { 19 | return ID; 20 | } 21 | 22 | public void setID(String ID) { 23 | this.ID = ID; 24 | } 25 | 26 | public String getName() { 27 | return name; 28 | } 29 | 30 | public void setName(String name) { 31 | this.name = name; 32 | } 33 | 34 | public String getclassID() { 35 | return classID; 36 | } 37 | 38 | public void setclassID(String classID) { 39 | this.classID = classID; 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | SMS 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 11 | 12 | 19 | 20 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 15 | 16 | 17 | 20 | 21 | 27 | 28 | 35 | 36 |