├── 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 |
5 | -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- 1 |19 | * For more on system bars, see System Bars. 22 | * 23 | * @see android.view.View#setSystemUiVisibility(int) 24 | * @see android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN 25 | */ 26 | public abstract class SystemUiHider { 27 | /** 28 | * When this flag is set, the 29 | * {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_SCREEN} 30 | * flag will be set on older devices, making the status bar "float" on top 31 | * of the activity layout. This is most useful when there are no controls at 32 | * the top of the activity layout. 33 | *
34 | * This flag isn't used on newer devices because the action
36 | * bar, the most important structural element of an Android app, should
37 | * be visible and not obscured by the system UI.
38 | */
39 | public static final int FLAG_LAYOUT_IN_SCREEN_OLDER_DEVICES = 0x1;
40 |
41 | /**
42 | * When this flag is set, {@link #show()} and {@link #hide()} will toggle
43 | * the visibility of the status bar. If there is a navigation bar, show and
44 | * hide will toggle low profile mode.
45 | */
46 | public static final int FLAG_FULLSCREEN = 0x2;
47 |
48 | /**
49 | * When this flag is set, {@link #show()} and {@link #hide()} will toggle
50 | * the visibility of the navigation bar, if it's present on the device and
51 | * the device allows hiding it. In cases where the navigation bar is present
52 | * but cannot be hidden, show and hide will toggle low profile mode.
53 | */
54 | public static final int FLAG_HIDE_NAVIGATION = FLAG_FULLSCREEN | 0x4;
55 |
56 | /**
57 | * The activity associated with this UI hider object.
58 | */
59 | protected Activity mActivity;
60 |
61 | /**
62 | * The view on which {@link View#setSystemUiVisibility(int)} will be called.
63 | */
64 | protected View mAnchorView;
65 |
66 | /**
67 | * The current UI hider flags.
68 | *
69 | * @see #FLAG_FULLSCREEN
70 | * @see #FLAG_HIDE_NAVIGATION
71 | * @see #FLAG_LAYOUT_IN_SCREEN_OLDER_DEVICES
72 | */
73 | protected int mFlags;
74 |
75 | /**
76 | * The current visibility callback.
77 | */
78 | protected OnVisibilityChangeListener mOnVisibilityChangeListener = sDummyListener;
79 |
80 | /**
81 | * Creates and returns an instance of {@link SystemUiHider} that is
82 | * appropriate for this device. The object will be either a
83 | * {@link SystemUiHiderBase} or {@link SystemUiHiderHoneycomb} depending on
84 | * the device.
85 | *
86 | * @param activity
87 | * The activity whose window's system UI should be controlled by
88 | * this class.
89 | * @param anchorView
90 | * The view on which {@link View#setSystemUiVisibility(int)} will
91 | * be called.
92 | * @param flags
93 | * Either 0 or any combination of {@link #FLAG_FULLSCREEN},
94 | * {@link #FLAG_HIDE_NAVIGATION}, and
95 | * {@link #FLAG_LAYOUT_IN_SCREEN_OLDER_DEVICES}.
96 | */
97 | public static SystemUiHider getInstance(Activity activity, View anchorView,
98 | int flags) {
99 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
100 | return new SystemUiHiderHoneycomb(activity, anchorView, flags);
101 | } else {
102 | return new SystemUiHiderBase(activity, anchorView, flags);
103 | }
104 | }
105 |
106 | protected SystemUiHider(Activity activity, View anchorView, int flags) {
107 | mActivity = activity;
108 | mAnchorView = anchorView;
109 | mFlags = flags;
110 | }
111 |
112 | /**
113 | * Sets up the system UI hider. Should be called from
114 | * {@link Activity#onCreate}.
115 | */
116 | public abstract void setup();
117 |
118 | /**
119 | * Returns whether or not the system UI is visible.
120 | */
121 | public abstract boolean isVisible();
122 |
123 | /**
124 | * Hide the system UI.
125 | */
126 | public abstract void hide();
127 |
128 | /**
129 | * Show the system UI.
130 | */
131 | public abstract void show();
132 |
133 | /**
134 | * Toggle the visibility of the system UI.
135 | */
136 | public void toggle() {
137 | if (isVisible()) {
138 | hide();
139 | } else {
140 | show();
141 | }
142 | }
143 |
144 | /**
145 | * Registers a callback, to be triggered when the system UI visibility
146 | * changes.
147 | */
148 | public void setOnVisibilityChangeListener(
149 | OnVisibilityChangeListener listener) {
150 | if (listener == null) {
151 | listener = sDummyListener;
152 | }
153 |
154 | mOnVisibilityChangeListener = listener;
155 | }
156 |
157 | /**
158 | * A dummy no-op callback for use when there is no other listener set.
159 | */
160 | private static OnVisibilityChangeListener sDummyListener = new OnVisibilityChangeListener() {
161 | @Override
162 | public void onVisibilityChange(boolean visible) {
163 | }
164 | };
165 |
166 | /**
167 | * A callback interface used to listen for system UI visibility changes.
168 | */
169 | public interface OnVisibilityChangeListener {
170 | /**
171 | * Called when the system UI visibility has changed.
172 | *
173 | * @param visible
174 | * True if the system UI is visible.
175 | */
176 | public void onVisibilityChange(boolean visible);
177 | }
178 | }
179 |
--------------------------------------------------------------------------------
/res/layout/activity_group_detail.xml:
--------------------------------------------------------------------------------
1 | CREATOR = new Parcelable.Creator
() {
254 |
255 | @Override
256 | public list createFromParcel(Parcel in) {
257 | return new list(in);
258 | }
259 |
260 | @Override
261 | public list[] newArray(int size) {
262 | return new list[size];
263 | }
264 | };
265 | }
266 |
--------------------------------------------------------------------------------
/src/com/example/sms/IndividualDetailActivity.java:
--------------------------------------------------------------------------------
1 | package com.example.sms;
2 |
3 | import com.beardedhen.androidbootstrap.BootstrapButton;
4 |
5 | import android.os.Bundle;
6 | import android.preference.PreferenceManager;
7 | import android.app.ActionBar;
8 | import android.app.Activity;
9 | import android.content.Intent;
10 | import android.content.SharedPreferences;
11 | import android.database.Cursor;
12 | import android.database.sqlite.SQLiteDatabase;
13 | import android.database.sqlite.SQLiteException;
14 | import android.util.Log;
15 | import android.view.Menu;
16 | import android.view.MenuItem;
17 | import android.view.View;
18 | import android.widget.EditText;
19 | import android.widget.TableRow;
20 | import android.widget.Toast;
21 |
22 | public class IndividualDetailActivity extends Activity {
23 |
24 |
25 | SQLiteDatabase db;
26 | DBHelper dbhelper;
27 | Cursor cursor;
28 | EditText tID;
29 | EditText tName;
30 | EditText tClassID;
31 | EditText tmidSem;
32 | EditText tendSem;
33 | EditText tassignment;
34 | EditText tproject;
35 | EditText tattendance;
36 | EditText tbehavior;
37 | EditText tsports;
38 | EditText dummy;
39 | ActionBar actionBar;
40 | String teacher_id = null;
41 | String i = null;
42 | BootstrapButton save;
43 | TableRow tableRow1;
44 |
45 | @Override
46 | protected void onCreate(Bundle savedInstanceState) {
47 | super.onCreate(savedInstanceState);
48 | setContentView(R.layout.activity_individual_detail);
49 |
50 | Intent intent = this.getIntent();
51 | Bundle bundle = intent.getExtras();
52 | sender sd = (sender) bundle.getParcelable("sender");
53 |
54 | tableRow1 = (TableRow) findViewById(R.id.tableRow1);
55 | SharedPreferences getPrefs = PreferenceManager
56 | .getDefaultSharedPreferences(getBaseContext());
57 | boolean dName = getPrefs.getBoolean("checkbox", true);
58 | if (dName == true) {
59 | tableRow1.setVisibility(0);
60 |
61 | } else {
62 | tableRow1.setVisibility(100);
63 | }
64 |
65 | dbhelper = new DBHelper(getApplicationContext());
66 | db = dbhelper.getReadableDatabase();
67 | String input = sd.sendList.get(0);
68 | teacher_id = sd.sendList.get(1);
69 |
70 | dummy = (EditText) findViewById(R.id.dummy);
71 | tID = (EditText) findViewById(R.id.ResultID);
72 | tName = (EditText) findViewById(R.id.ResultName);
73 | tClassID = (EditText) findViewById(R.id.ResultClassID);
74 | tmidSem = (EditText) findViewById(R.id.ResultMidSem);
75 | tendSem = (EditText) findViewById(R.id.ResultEndSem);
76 | tassignment = (EditText) findViewById(R.id.ResultAssignment);
77 | tproject = (EditText) findViewById(R.id.ResultProject);
78 | tattendance = (EditText) findViewById(R.id.ResultAttendance);
79 | tbehavior = (EditText) findViewById(R.id.ResultBehaviour);
80 | tsports = (EditText) findViewById(R.id.ResultSports);
81 | save = (BootstrapButton) findViewById(R.id.save);
82 |
83 | try {
84 | String query = "select distinct s.student_id, "
85 | + "s.student_name, " + "s.class_id, " + "p.mid_sem, "
86 | + "p.end_sem, " + "p.assignment, " + "p.project, "
87 | + "p.attendance, " + "p.behavior, " + "s.sports "
88 | + "from student_table s " + "join performance_table p "
89 | + "on s.student_id = p.student_id "
90 | + "where s.student_id = '" + input
91 | + "' and p.course_id = (select course_id "
92 | + "from teacher_course " + "where teacher_id = '"
93 | + teacher_id + "');";
94 |
95 | Log.wtf("query", query);
96 |
97 | Cursor cursor = db.rawQuery(query, null);
98 |
99 | if (cursor != null) {
100 | if (cursor.moveToFirst()) {
101 | do {
102 | String ID1 = cursor.getString(cursor
103 | .getColumnIndex(cursor.getColumnName(0)));
104 | String Name1 = cursor.getString(cursor
105 | .getColumnIndex(cursor.getColumnName(1)));
106 | String ClassID1 = cursor.getString(cursor
107 | .getColumnIndex(cursor.getColumnName(2)));
108 | String midSem1 = cursor.getString(cursor
109 | .getColumnIndex(cursor.getColumnName(3)));
110 | String endSem1 = cursor.getString(cursor
111 | .getColumnIndex(cursor.getColumnName(4)));
112 | String assignment1 = cursor.getString(cursor
113 | .getColumnIndex(cursor.getColumnName(5)));
114 | String project1 = cursor.getString(cursor
115 | .getColumnIndex(cursor.getColumnName(6)));
116 | String attendance1 = cursor.getString(cursor
117 | .getColumnIndex(cursor.getColumnName(7)));
118 | String behavior1 = cursor.getString(cursor
119 | .getColumnIndex(cursor.getColumnName(8)));
120 | String sports1 = cursor.getString(cursor
121 | .getColumnIndex(cursor.getColumnName(9)));
122 |
123 | Log.wtf("Works!!", ID1 + " " + Name1 + " " + ClassID1);
124 |
125 | tID.setText(ID1);
126 | i = ID1;
127 | tName.setText(Name1);
128 | tClassID.setText(ClassID1);
129 | tmidSem.setText(midSem1);
130 | tendSem.setText(endSem1);
131 | tassignment.setText(assignment1);
132 | tproject.setText(project1);
133 | tattendance.setText(attendance1);
134 | tbehavior.setText(behavior1);
135 | tsports.setText(sports1);
136 |
137 | /*
138 | * tID.setFocusable(false); tName.setFocusable(false);
139 | * tClassID.setFocusable(false);
140 | * tmidSem.setFocusable(false);
141 | * tendSem.setFocusable(false);
142 | * tassignment.setFocusable(false);
143 | * tproject.setFocusable(false);
144 | * tattendance.setFocusable(false);
145 | * tbehavior.setFocusable(false);
146 | * tsports.setFocusable(false);
147 | */
148 |
149 | tID.setEnabled(false);
150 | tName.setEnabled(false);
151 | tClassID.setEnabled(false);
152 | tmidSem.setEnabled(false);
153 | tendSem.setEnabled(false);
154 | tassignment.setEnabled(false);
155 | tproject.setEnabled(false);
156 | tattendance.setEnabled(false);
157 | tbehavior.setEnabled(false);
158 | tsports.setEnabled(false);
159 |
160 | } while (cursor.moveToNext());
161 | }
162 | } else {
163 | Log.d("Cursor", "Null");
164 | }
165 | } catch (SQLiteException se) {
166 | Log.e("Shit!", "Could not create or Open the database");
167 | }
168 | }
169 |
170 | @Override
171 | public boolean onCreateOptionsMenu(Menu menu) {
172 | // Inflate the menu; this adds items to the action bar if it is present.
173 | getMenuInflater().inflate(R.menu.individual_detail, menu);
174 | return true;
175 | }
176 |
177 | public boolean onOptionsItemSelected(MenuItem item) {
178 | switch (item.getItemId()) {
179 | case R.id.editButton:
180 | Log.d("Menu", "Edit Button Clicked");
181 |
182 | tmidSem.setEnabled(true);
183 | tendSem.setEnabled(true);
184 | tassignment.setEnabled(true);
185 | tproject.setEnabled(true);
186 | tattendance.setEnabled(true);
187 | tbehavior.setEnabled(true);
188 | tsports.setEnabled(true);
189 | save.setBootstrapButtonEnabled(true);
190 |
191 | // make all fields editable
192 | return true;
193 | default:
194 | return super.onOptionsItemSelected(item);
195 |
196 | }
197 | }
198 |
199 | /** Called when the user clicks the Save button */
200 | public void saveStuff(View view) {
201 | // Do something in response to button
202 | String mid = tmidSem.getText().toString();
203 | String end = tendSem.getText().toString();
204 | String assign = tassignment.getText().toString();
205 | String pro = tproject.getText().toString();
206 | String atten = tattendance.getText().toString();
207 | String beh = tbehavior.getText().toString();
208 | String sport = tsports.getText().toString();
209 |
210 | dbhelper = new DBHelper(getApplicationContext());
211 | db = dbhelper.getWritableDatabase();
212 |
213 | try {
214 |
215 | db.execSQL("update performance_table "
216 | + "set mid_sem = '"
217 | + mid
218 | + "', end_sem = '"
219 | + end
220 | + "', assignment = '"
221 | + assign
222 | + "', project = '"
223 | + pro
224 | + "', attendance = '"
225 | + atten
226 | + "', behavior = '"
227 | + beh
228 | + "' where student_id = '"
229 | + i
230 | + "' and course_id = (select course_id from teacher_course where teacher_id = '"
231 | + teacher_id + "');");
232 |
233 | db.execSQL("update student_table " + "set sports = '" + sport
234 | + "' " + "where student_id = '" + i + "' ;");
235 |
236 | Log.wtf("Behavior", beh);
237 |
238 | Toast.makeText(this, "Data Updated", Toast.LENGTH_SHORT).show();
239 | dbhelper.close();
240 | db.close();
241 | finish();
242 |
243 | } catch (Exception e) {
244 | // TODO Auto-generated catch block
245 | e.printStackTrace();
246 | }
247 | }
248 |
249 | }
250 |
--------------------------------------------------------------------------------
/gen/com/beardedhen/androidbootstrap/R.java:
--------------------------------------------------------------------------------
1 | /* AUTO-GENERATED FILE. DO NOT MODIFY.
2 | *
3 | * This class was automatically generated by the
4 | * aapt tool from the resource data it found. It
5 | * should not be modified by hand.
6 | */
7 | package com.beardedhen.androidbootstrap;
8 |
9 | public final class R {
10 | public static final class attr {
11 | public static final int bb_icon_left = 0x7f010001;
12 | public static final int bb_icon_right = 0x7f010002;
13 | public static final int bb_roundedCorners = 0x7f010003;
14 | public static final int bb_size = 0x7f010005;
15 | public static final int bb_text_alignment = 0x7f010004;
16 | public static final int bb_text_gravity = 0x7f010006;
17 | public static final int bb_type = 0x7f010000;
18 | public static final int bct_image = 0x7f01000f;
19 | public static final int bct_minimal = 0x7f010011;
20 | public static final int bct_size = 0x7f010010;
21 | public static final int be_roundedCorners = 0x7f010008;
22 | public static final int be_state = 0x7f010009;
23 | public static final int bt_height = 0x7f01000d;
24 | public static final int bt_image = 0x7f01000b;
25 | public static final int bt_inside_padding = 0x7f01000e;
26 | public static final int bt_roundedCorners = 0x7f01000a;
27 | public static final int bt_width = 0x7f01000c;
28 | public static final int fa_icon = 0x7f010007;
29 | }
30 | public static final class color {
31 | public static final int bbutton_danger = 0x7f05000a;
32 | public static final int bbutton_danger_disabled = 0x7f05000e;
33 | public static final int bbutton_danger_disabled_edge = 0x7f05000f;
34 | public static final int bbutton_danger_edge = 0x7f05000b;
35 | public static final int bbutton_danger_pressed = 0x7f05000c;
36 | public static final int bbutton_danger_pressed_edge = 0x7f05000d;
37 | public static final int bbutton_default = 0x7f050022;
38 | public static final int bbutton_default_disabled = 0x7f050026;
39 | public static final int bbutton_default_disabled_edge = 0x7f050027;
40 | public static final int bbutton_default_edge = 0x7f050023;
41 | public static final int bbutton_default_pressed = 0x7f050024;
42 | public static final int bbutton_default_pressed_edge = 0x7f050025;
43 | public static final int bbutton_edittext_border = 0x7f050002;
44 | public static final int bbutton_edittext_disabled = 0x7f050003;
45 | public static final int bbutton_info = 0x7f05001c;
46 | public static final int bbutton_info_disabled = 0x7f050020;
47 | public static final int bbutton_info_disabled_edge = 0x7f050021;
48 | public static final int bbutton_info_edge = 0x7f05001d;
49 | public static final int bbutton_info_pressed = 0x7f05001e;
50 | public static final int bbutton_info_pressed_edge = 0x7f05001f;
51 | public static final int bbutton_inverse = 0x7f050028;
52 | public static final int bbutton_inverse_disabled = 0x7f05002c;
53 | public static final int bbutton_inverse_disabled_edge = 0x7f05002d;
54 | public static final int bbutton_inverse_edge = 0x7f050029;
55 | public static final int bbutton_inverse_pressed = 0x7f05002a;
56 | public static final int bbutton_inverse_pressed_edge = 0x7f05002b;
57 | public static final int bbutton_primary = 0x7f050004;
58 | public static final int bbutton_primary_disabled = 0x7f050008;
59 | public static final int bbutton_primary_disabled_edge = 0x7f050009;
60 | public static final int bbutton_primary_edge = 0x7f050005;
61 | public static final int bbutton_primary_pressed = 0x7f050006;
62 | public static final int bbutton_primary_pressed_edge = 0x7f050007;
63 | public static final int bbutton_success = 0x7f050010;
64 | public static final int bbutton_success_disabled = 0x7f050014;
65 | public static final int bbutton_success_disabled_edge = 0x7f050015;
66 | public static final int bbutton_success_edge = 0x7f050011;
67 | public static final int bbutton_success_pressed = 0x7f050012;
68 | public static final int bbutton_success_pressed_edge = 0x7f050013;
69 | public static final int bbutton_warning = 0x7f050016;
70 | public static final int bbutton_warning_disabled = 0x7f05001a;
71 | public static final int bbutton_warning_disabled_edge = 0x7f05001b;
72 | public static final int bbutton_warning_edge = 0x7f050017;
73 | public static final int bbutton_warning_pressed = 0x7f050018;
74 | public static final int bbutton_warning_pressed_edge = 0x7f050019;
75 | public static final int black = 0x7f050001;
76 | public static final int bthumbnail_background = 0x7f05002e;
77 | public static final int bthumbnail_border = 0x7f050030;
78 | public static final int bthumbnail_font = 0x7f050031;
79 | public static final int bthumbnail_placeholder = 0x7f05002f;
80 | public static final int white = 0x7f050000;
81 | }
82 | public static final class dimen {
83 | public static final int activity_horizontal_margin = 0x7f060000;
84 | public static final int activity_vertical_margin = 0x7f060001;
85 | public static final int bbuton_rounded_corner_radius = 0x7f060002;
86 | public static final int bthumbnail_rounded_corner_radius = 0x7f060003;
87 | public static final int padding_large = 0x7f060007;
88 | public static final int padding_medium = 0x7f060006;
89 | public static final int padding_micro = 0x7f060004;
90 | public static final int padding_small = 0x7f060005;
91 | }
92 | public static final class drawable {
93 | public static final int bbuton_danger = 0x7f020001;
94 | public static final int bbuton_danger_rounded = 0x7f020002;
95 | public static final int bbuton_default = 0x7f020003;
96 | public static final int bbuton_default_rounded = 0x7f020004;
97 | public static final int bbuton_info = 0x7f020005;
98 | public static final int bbuton_info_rounded = 0x7f020006;
99 | public static final int bbuton_inverse = 0x7f020007;
100 | public static final int bbuton_inverse_rounded = 0x7f020008;
101 | public static final int bbuton_primary = 0x7f020009;
102 | public static final int bbuton_primary_rounded = 0x7f02000a;
103 | public static final int bbuton_success = 0x7f02000b;
104 | public static final int bbuton_success_rounded = 0x7f02000c;
105 | public static final int bbuton_warning = 0x7f02000d;
106 | public static final int bbuton_warning_rounded = 0x7f02000e;
107 | public static final int bthumbnail_container_rounded = 0x7f02000f;
108 | public static final int bthumbnail_container_square = 0x7f020010;
109 | public static final int bthumbnail_placeholder_default = 0x7f020011;
110 | public static final int edittext_background = 0x7f020013;
111 | public static final int edittext_background_danger = 0x7f020014;
112 | public static final int edittext_background_rounded = 0x7f020015;
113 | public static final int edittext_background_rounded_danger = 0x7f020016;
114 | public static final int edittext_background_rounded_success = 0x7f020017;
115 | public static final int edittext_background_rounded_warning = 0x7f020018;
116 | public static final int edittext_background_success = 0x7f020019;
117 | public static final int edittext_background_warning = 0x7f02001a;
118 | public static final int ic_launcher = 0x7f02001b;
119 | public static final int thumbnail_circle = 0x7f020021;
120 | public static final int thumbnail_circle_container = 0x7f020022;
121 | public static final int thumbnail_circle_minimal = 0x7f020023;
122 | }
123 | public static final class id {
124 | public static final int action_settings = 0x7f0a0055;
125 | public static final int container = 0x7f0a003c;
126 | public static final int dimensionsLabel = 0x7f0a003e;
127 | public static final int image = 0x7f0a003f;
128 | public static final int layout = 0x7f0a0037;
129 | public static final int lblColA = 0x7f0a0052;
130 | public static final int lblColB = 0x7f0a0053;
131 | public static final int lblLeft = 0x7f0a0038;
132 | public static final int lblMiddle = 0x7f0a0039;
133 | public static final int lblRight = 0x7f0a003a;
134 | public static final int lblSubTitle = 0x7f0a0051;
135 | public static final int lblText = 0x7f0a0040;
136 | public static final int lblTitle = 0x7f0a0050;
137 | public static final int placeholder = 0x7f0a003d;
138 | public static final int txtText = 0x7f0a003b;
139 | }
140 | public static final class layout {
141 | public static final int bootstrap_button = 0x7f030009;
142 | public static final int bootstrap_button_fill = 0x7f03000a;
143 | public static final int bootstrap_edit_text = 0x7f03000b;
144 | public static final int bootstrap_thumbnail = 0x7f03000c;
145 | public static final int bootstrap_thumbnail_circle = 0x7f03000d;
146 | public static final int font_awesome_text = 0x7f03000e;
147 | public static final int row_title = 0x7f030012;
148 | public static final int row_title_and_subtitle = 0x7f030013;
149 | public static final int row_two_columns = 0x7f030014;
150 | }
151 | public static final class menu {
152 | public static final int main = 0x7f090007;
153 | }
154 | public static final class string {
155 | public static final int action_settings = 0x7f070001;
156 | public static final int app_name = 0x7f070000;
157 | public static final int hello_world = 0x7f070002;
158 | }
159 | public static final class style {
160 | public static final int AppBaseTheme = 0x7f080000;
161 | }
162 | public static final class styleable {
163 | public static final int[] BootstrapButton = { 0x0101000e, 0x01010095, 0x010100f4, 0x0101014f, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 };
164 | public static final int BootstrapButton_android_enabled = 0;
165 | public static final int BootstrapButton_android_layout_width = 2;
166 | public static final int BootstrapButton_android_text = 3;
167 | public static final int BootstrapButton_android_textSize = 1;
168 | public static final int BootstrapButton_bb_icon_left = 5;
169 | public static final int BootstrapButton_bb_icon_right = 6;
170 | public static final int BootstrapButton_bb_roundedCorners = 7;
171 | public static final int BootstrapButton_bb_size = 9;
172 | public static final int BootstrapButton_bb_text_alignment = 8;
173 | public static final int BootstrapButton_bb_text_gravity = 10;
174 | public static final int BootstrapButton_bb_type = 4;
175 | public static final int[] BootstrapCircleThumbnail = { 0x0101014f, 0x7f01000f, 0x7f010010, 0x7f010011 };
176 | public static final int BootstrapCircleThumbnail_android_text = 0;
177 | public static final int BootstrapCircleThumbnail_bct_image = 1;
178 | public static final int BootstrapCircleThumbnail_bct_minimal = 3;
179 | public static final int BootstrapCircleThumbnail_bct_size = 2;
180 | public static final int[] BootstrapEditText = { 0x0101000e, 0x01010095, 0x0101014f, 0x01010150, 0x7f010008, 0x7f010009 };
181 | public static final int BootstrapEditText_android_enabled = 0;
182 | public static final int BootstrapEditText_android_hint = 3;
183 | public static final int BootstrapEditText_android_text = 2;
184 | public static final int BootstrapEditText_android_textSize = 1;
185 | public static final int BootstrapEditText_be_roundedCorners = 4;
186 | public static final int BootstrapEditText_be_state = 5;
187 | public static final int[] BootstrapThumbnail = { 0x0101014f, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e };
188 | public static final int BootstrapThumbnail_android_text = 0;
189 | public static final int BootstrapThumbnail_bt_height = 4;
190 | public static final int BootstrapThumbnail_bt_image = 2;
191 | public static final int BootstrapThumbnail_bt_inside_padding = 5;
192 | public static final int BootstrapThumbnail_bt_roundedCorners = 1;
193 | public static final int BootstrapThumbnail_bt_width = 3;
194 | public static final int[] FontAwesomeText = { 0x01010095, 0x01010098, 0x7f010007 };
195 | public static final int FontAwesomeText_android_textColor = 1;
196 | public static final int FontAwesomeText_android_textSize = 0;
197 | public static final int FontAwesomeText_fa_icon = 2;
198 | }
199 | }
200 |
--------------------------------------------------------------------------------
/bin/R.txt:
--------------------------------------------------------------------------------
1 | int attr bb_icon_left 0x7f010001
2 | int attr bb_icon_right 0x7f010002
3 | int attr bb_roundedCorners 0x7f010003
4 | int attr bb_size 0x7f010005
5 | int attr bb_text_alignment 0x7f010004
6 | int attr bb_text_gravity 0x7f010006
7 | int attr bb_type 0x7f010000
8 | int attr bct_image 0x7f01000f
9 | int attr bct_minimal 0x7f010011
10 | int attr bct_size 0x7f010010
11 | int attr be_roundedCorners 0x7f010008
12 | int attr be_state 0x7f010009
13 | int attr bt_height 0x7f01000d
14 | int attr bt_image 0x7f01000b
15 | int attr bt_inside_padding 0x7f01000e
16 | int attr bt_roundedCorners 0x7f01000a
17 | int attr bt_width 0x7f01000c
18 | int attr buttonBarButtonStyle 0x7f010013
19 | int attr buttonBarStyle 0x7f010012
20 | int attr fa_icon 0x7f010007
21 | int color bbutton_danger 0x7f05000a
22 | int color bbutton_danger_disabled 0x7f05000e
23 | int color bbutton_danger_disabled_edge 0x7f05000f
24 | int color bbutton_danger_edge 0x7f05000b
25 | int color bbutton_danger_pressed 0x7f05000c
26 | int color bbutton_danger_pressed_edge 0x7f05000d
27 | int color bbutton_default 0x7f050022
28 | int color bbutton_default_disabled 0x7f050026
29 | int color bbutton_default_disabled_edge 0x7f050027
30 | int color bbutton_default_edge 0x7f050023
31 | int color bbutton_default_pressed 0x7f050024
32 | int color bbutton_default_pressed_edge 0x7f050025
33 | int color bbutton_edittext_border 0x7f050002
34 | int color bbutton_edittext_disabled 0x7f050003
35 | int color bbutton_info 0x7f05001c
36 | int color bbutton_info_disabled 0x7f050020
37 | int color bbutton_info_disabled_edge 0x7f050021
38 | int color bbutton_info_edge 0x7f05001d
39 | int color bbutton_info_pressed 0x7f05001e
40 | int color bbutton_info_pressed_edge 0x7f05001f
41 | int color bbutton_inverse 0x7f050028
42 | int color bbutton_inverse_disabled 0x7f05002c
43 | int color bbutton_inverse_disabled_edge 0x7f05002d
44 | int color bbutton_inverse_edge 0x7f050029
45 | int color bbutton_inverse_pressed 0x7f05002a
46 | int color bbutton_inverse_pressed_edge 0x7f05002b
47 | int color bbutton_primary 0x7f050004
48 | int color bbutton_primary_disabled 0x7f050008
49 | int color bbutton_primary_disabled_edge 0x7f050009
50 | int color bbutton_primary_edge 0x7f050005
51 | int color bbutton_primary_pressed 0x7f050006
52 | int color bbutton_primary_pressed_edge 0x7f050007
53 | int color bbutton_success 0x7f050010
54 | int color bbutton_success_disabled 0x7f050014
55 | int color bbutton_success_disabled_edge 0x7f050015
56 | int color bbutton_success_edge 0x7f050011
57 | int color bbutton_success_pressed 0x7f050012
58 | int color bbutton_success_pressed_edge 0x7f050013
59 | int color bbutton_warning 0x7f050016
60 | int color bbutton_warning_disabled 0x7f05001a
61 | int color bbutton_warning_disabled_edge 0x7f05001b
62 | int color bbutton_warning_edge 0x7f050017
63 | int color bbutton_warning_pressed 0x7f050018
64 | int color bbutton_warning_pressed_edge 0x7f050019
65 | int color black 0x7f050001
66 | int color black_overlay 0x7f050032
67 | int color bthumbnail_background 0x7f05002e
68 | int color bthumbnail_border 0x7f050030
69 | int color bthumbnail_font 0x7f050031
70 | int color bthumbnail_placeholder 0x7f05002f
71 | int color white 0x7f050000
72 | int dimen activity_horizontal_margin 0x7f060000
73 | int dimen activity_vertical_margin 0x7f060001
74 | int dimen bbuton_rounded_corner_radius 0x7f060002
75 | int dimen bthumbnail_rounded_corner_radius 0x7f060003
76 | int dimen padding_large 0x7f060007
77 | int dimen padding_medium 0x7f060006
78 | int dimen padding_micro 0x7f060004
79 | int dimen padding_small 0x7f060005
80 | int drawable a1 0x7f020000
81 | int drawable bbuton_danger 0x7f020001
82 | int drawable bbuton_danger_rounded 0x7f020002
83 | int drawable bbuton_default 0x7f020003
84 | int drawable bbuton_default_rounded 0x7f020004
85 | int drawable bbuton_info 0x7f020005
86 | int drawable bbuton_info_rounded 0x7f020006
87 | int drawable bbuton_inverse 0x7f020007
88 | int drawable bbuton_inverse_rounded 0x7f020008
89 | int drawable bbuton_primary 0x7f020009
90 | int drawable bbuton_primary_rounded 0x7f02000a
91 | int drawable bbuton_success 0x7f02000b
92 | int drawable bbuton_success_rounded 0x7f02000c
93 | int drawable bbuton_warning 0x7f02000d
94 | int drawable bbuton_warning_rounded 0x7f02000e
95 | int drawable bthumbnail_container_rounded 0x7f02000f
96 | int drawable bthumbnail_container_square 0x7f020010
97 | int drawable bthumbnail_placeholder_default 0x7f020011
98 | int drawable edit 0x7f020012
99 | int drawable edittext_background 0x7f020013
100 | int drawable edittext_background_danger 0x7f020014
101 | int drawable edittext_background_rounded 0x7f020015
102 | int drawable edittext_background_rounded_danger 0x7f020016
103 | int drawable edittext_background_rounded_success 0x7f020017
104 | int drawable edittext_background_rounded_warning 0x7f020018
105 | int drawable edittext_background_success 0x7f020019
106 | int drawable edittext_background_warning 0x7f02001a
107 | int drawable ic_launcher 0x7f02001b
108 | int drawable multiuser 0x7f02001c
109 | int drawable singleuser 0x7f02001d
110 | int drawable singleusera 0x7f02001e
111 | int drawable student1 0x7f02001f
112 | int drawable subscribe 0x7f020020
113 | int drawable thumbnail_circle 0x7f020021
114 | int drawable thumbnail_circle_container 0x7f020022
115 | int drawable thumbnail_circle_minimal 0x7f020023
116 | int id Name 0x7f0a004d
117 | int id ResultAssignment 0x7f0a0027
118 | int id ResultAttendance 0x7f0a002b
119 | int id ResultBehaviour 0x7f0a002d
120 | int id ResultClassID 0x7f0a0023
121 | int id ResultEndSem 0x7f0a0025
122 | int id ResultID 0x7f0a0022
123 | int id ResultMidSem 0x7f0a0024
124 | int id ResultName 0x7f0a0021
125 | int id ResultProject 0x7f0a0029
126 | int id ResultSports 0x7f0a002f
127 | int id RollNo 0x7f0a004f
128 | int id Section 0x7f0a004e
129 | int id a0 0x7f0a0043
130 | int id a1 0x7f0a0044
131 | int id aClassId 0x7f0a0006
132 | int id aName 0x7f0a0002
133 | int id aRollNo 0x7f0a0004
134 | int id aa 0x7f0a0018
135 | int id aat 0x7f0a001c
136 | int id action_settings 0x7f0a0055
137 | int id add_student 0x7f0a0056
138 | int id ap 0x7f0a001a
139 | int id b0 0x7f0a004a
140 | int id b1 0x7f0a004b
141 | int id bootstrapButton1 0x7f0a0045
142 | int id bootstrapButton2 0x7f0a004c
143 | int id change 0x7f0a0008
144 | int id container 0x7f0a003c
145 | int id dimensionsLabel 0x7f0a003e
146 | int id dummy 0x7f0a001e
147 | int id editButton 0x7f0a0054
148 | int id editText1 0x7f0a0012
149 | int id esa 0x7f0a0016
150 | int id hide1 0x7f0a0020
151 | int id iGroup 0x7f0a0011
152 | int id iResult 0x7f0a001d
153 | int id image 0x7f0a003f
154 | int id imageView1 0x7f0a0032
155 | int id imageView2 0x7f0a0047
156 | int id layout 0x7f0a0037
157 | int id lblColA 0x7f0a0052
158 | int id lblColB 0x7f0a0053
159 | int id lblLeft 0x7f0a0038
160 | int id lblMiddle 0x7f0a0039
161 | int id lblRight 0x7f0a003a
162 | int id lblSubTitle 0x7f0a0051
163 | int id lblText 0x7f0a0040
164 | int id lblTitle 0x7f0a0050
165 | int id login 0x7f0a0035
166 | int id msa 0x7f0a0014
167 | int id np 0x7f0a000d
168 | int id np1 0x7f0a000f
169 | int id nstl 0x7f0a0000
170 | int id op 0x7f0a000b
171 | int id pager 0x7f0a0036
172 | int id placeholder 0x7f0a003d
173 | int id preferences 0x7f0a0057
174 | int id radioGroup1 0x7f0a0042
175 | int id radioGroup2 0x7f0a0049
176 | int id save 0x7f0a0030
177 | int id st1 0x7f0a0009
178 | int id t1 0x7f0a0041
179 | int id t2 0x7f0a0048
180 | int id tR1 0x7f0a0001
181 | int id tR2s 0x7f0a0003
182 | int id tR3 0x7f0a0005
183 | int id tR4 0x7f0a0007
184 | int id tRow1 0x7f0a000a
185 | int id tRow2 0x7f0a000c
186 | int id tRow3 0x7f0a000e
187 | int id tRow4 0x7f0a0010
188 | int id tableLayout1 0x7f0a0031
189 | int id tableLayout2 0x7f0a0046
190 | int id tableRow1 0x7f0a0013
191 | int id tableRow10 0x7f0a002e
192 | int id tableRow2 0x7f0a0015
193 | int id tableRow3 0x7f0a0017
194 | int id tableRow4 0x7f0a0019
195 | int id tableRow5 0x7f0a001b
196 | int id tableRow6 0x7f0a0026
197 | int id tableRow7 0x7f0a0028
198 | int id tableRow8 0x7f0a002a
199 | int id tableRow9 0x7f0a002c
200 | int id tl 0x7f0a001f
201 | int id txtOne 0x7f0a0033
202 | int id txtText 0x7f0a003b
203 | int id txtTwo 0x7f0a0034
204 | int layout activity_add_new_student 0x7f030000
205 | int layout activity_change_password 0x7f030001
206 | int layout activity_course_detail 0x7f030002
207 | int layout activity_group 0x7f030003
208 | int layout activity_group_detail 0x7f030004
209 | int layout activity_individual 0x7f030005
210 | int layout activity_individual_detail 0x7f030006
211 | int layout activity_main 0x7f030007
212 | int layout activity_second 0x7f030008
213 | int layout bootstrap_button 0x7f030009
214 | int layout bootstrap_button_fill 0x7f03000a
215 | int layout bootstrap_edit_text 0x7f03000b
216 | int layout bootstrap_thumbnail 0x7f03000c
217 | int layout bootstrap_thumbnail_circle 0x7f03000d
218 | int layout font_awesome_text 0x7f03000e
219 | int layout fragment_a 0x7f03000f
220 | int layout fragment_b 0x7f030010
221 | int layout row_individual 0x7f030011
222 | int layout row_title 0x7f030012
223 | int layout row_title_and_subtitle 0x7f030013
224 | int layout row_two_columns 0x7f030014
225 | int menu add_new_student 0x7f090000
226 | int menu change_password 0x7f090001
227 | int menu course_detail 0x7f090002
228 | int menu group 0x7f090003
229 | int menu group_detail 0x7f090004
230 | int menu individual 0x7f090005
231 | int menu individual_detail 0x7f090006
232 | int menu main 0x7f090007
233 | int menu second 0x7f090008
234 | int string action_settings 0x7f070001
235 | int string add_student 0x7f07001a
236 | int string app_name 0x7f070000
237 | int string classGroup 0x7f07000f
238 | int string course 0x7f07000d
239 | int string dummy_button 0x7f07000b
240 | int string dummy_content 0x7f07000c
241 | int string edit_title 0x7f070015
242 | int string hello_blank_fragment 0x7f070009
243 | int string hello_world 0x7f070002
244 | int string name 0x7f070012
245 | int string password 0x7f070003
246 | int string roll_number 0x7f070011
247 | int string search 0x7f070010
248 | int string title_activity_add_new_student 0x7f07001b
249 | int string title_activity_add_student 0x7f070019
250 | int string title_activity_change_password 0x7f070018
251 | int string title_activity_course_detail 0x7f070017
252 | int string title_activity_fullscreen 0x7f07000a
253 | int string title_activity_group 0x7f070014
254 | int string title_activity_group_detail 0x7f070016
255 | int string title_activity_individual 0x7f07000e
256 | int string title_activity_individual_detail 0x7f070013
257 | int string title_activity_second 0x7f070005
258 | int string title_section1 0x7f070006
259 | int string title_section2 0x7f070007
260 | int string title_section3 0x7f070008
261 | int string username 0x7f070004
262 | int style AppBaseTheme 0x7f080000
263 | int style AppTheme 0x7f080001
264 | int style ButtonBar 0x7f080003
265 | int style ButtonBarButton 0x7f080004
266 | int style FullscreenActionBarStyle 0x7f080005
267 | int style FullscreenTheme 0x7f080002
268 | int[] styleable BootstrapButton { 0x0101000e, 0x01010095, 0x010100f4, 0x0101014f, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 }
269 | int styleable BootstrapButton_android_enabled 0
270 | int styleable BootstrapButton_android_layout_width 2
271 | int styleable BootstrapButton_android_text 3
272 | int styleable BootstrapButton_android_textSize 1
273 | int styleable BootstrapButton_bb_icon_left 5
274 | int styleable BootstrapButton_bb_icon_right 6
275 | int styleable BootstrapButton_bb_roundedCorners 7
276 | int styleable BootstrapButton_bb_size 9
277 | int styleable BootstrapButton_bb_text_alignment 8
278 | int styleable BootstrapButton_bb_text_gravity 10
279 | int styleable BootstrapButton_bb_type 4
280 | int[] styleable BootstrapCircleThumbnail { 0x0101014f, 0x7f01000f, 0x7f010010, 0x7f010011 }
281 | int styleable BootstrapCircleThumbnail_android_text 0
282 | int styleable BootstrapCircleThumbnail_bct_image 1
283 | int styleable BootstrapCircleThumbnail_bct_minimal 3
284 | int styleable BootstrapCircleThumbnail_bct_size 2
285 | int[] styleable BootstrapEditText { 0x0101000e, 0x01010095, 0x0101014f, 0x01010150, 0x7f010008, 0x7f010009 }
286 | int styleable BootstrapEditText_android_enabled 0
287 | int styleable BootstrapEditText_android_hint 3
288 | int styleable BootstrapEditText_android_text 2
289 | int styleable BootstrapEditText_android_textSize 1
290 | int styleable BootstrapEditText_be_roundedCorners 4
291 | int styleable BootstrapEditText_be_state 5
292 | int[] styleable BootstrapThumbnail { 0x0101014f, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e }
293 | int styleable BootstrapThumbnail_android_text 0
294 | int styleable BootstrapThumbnail_bt_height 4
295 | int styleable BootstrapThumbnail_bt_image 2
296 | int styleable BootstrapThumbnail_bt_inside_padding 5
297 | int styleable BootstrapThumbnail_bt_roundedCorners 1
298 | int styleable BootstrapThumbnail_bt_width 3
299 | int[] styleable ButtonBarContainerTheme { 0x7f010012, 0x7f010013 }
300 | int styleable ButtonBarContainerTheme_buttonBarButtonStyle 1
301 | int styleable ButtonBarContainerTheme_buttonBarStyle 0
302 | int[] styleable FontAwesomeText { 0x01010095, 0x01010098, 0x7f010007 }
303 | int styleable FontAwesomeText_android_textColor 1
304 | int styleable FontAwesomeText_android_textSize 0
305 | int styleable FontAwesomeText_fa_icon 2
306 | int xml pref 0x7f040000
307 |
--------------------------------------------------------------------------------
/res/layout/activity_individual_detail.xml:
--------------------------------------------------------------------------------
1 |