Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
InstiApp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
RAHUL SHARMA
InstiApp
Commits
6cba242d
Commit
6cba242d
authored
Feb 04, 2019
by
Varun Patil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused resources
parent
e863eae4
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
143 deletions
+0
-143
app/src/main/res/layout/fragment_settings.xml
app/src/main/res/layout/fragment_settings.xml
+0
-110
app/src/main/res/layout/ppl_search_suggestion_item_view.xml
app/src/main/res/layout/ppl_search_suggestion_item_view.xml
+0
-16
app/src/main/res/values/colors.xml
app/src/main/res/values/colors.xml
+0
-1
app/src/main/res/values/strings.xml
app/src/main/res/values/strings.xml
+0
-6
app/src/main/res/values/styles.xml
app/src/main/res/values/styles.xml
+0
-10
No files found.
app/src/main/res/layout/fragment_settings.xml
deleted
100644 → 0
View file @
e863eae4
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
tools:context=
".fragment.SettingsFragment"
>
<android.support.v7.widget.CardView
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:card_view=
"http://schemas.android.com/apk/res-auto"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"4dp"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:layout_marginTop=
"4dp"
card_view:cardCornerRadius=
"1dp"
card_view:cardElevation=
"1dp"
>
<LinearLayout
android:id=
"@+id/role_card_layout"
android:layout_width=
"match_parent"
android:layout_height=
"80dp"
android:layout_margin=
"16dp"
android:orientation=
"horizontal"
>
<de.hdodenhof.circleimageview.CircleImageView
android:id=
"@+id/user_card_avatar"
android:layout_width=
"80dp"
android:layout_height=
"80dp"
android:layout_gravity=
"center"
android:layout_margin=
"16dp"
android:scaleType=
"centerCrop"
/>
<TextView
android:id=
"@+id/user_card_name"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center_vertical"
android:textColor=
"?themeColorInverse"
android:textSize=
"18sp"
/>
</LinearLayout>
</android.support.v7.widget.CardView>
<Switch
android:id=
"@+id/show_contact_switch"
style=
"@style/Widget.AppCompat.Button.Borderless"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:text=
"Show contact no"
android:textSize=
"20sp"
android:gravity=
"center_vertical"
android:textAllCaps=
"false"
android:padding=
"16dp"
android:visibility=
"gone"
/>
<Button
android:id=
"@+id/settings_update_profile"
style=
"@style/Widget.AppCompat.Button.Borderless"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:drawablePadding=
"16dp"
android:drawableStart=
"@drawable/baseline_account_circle_gray_36"
android:gravity=
"center_vertical"
android:padding=
"16dp"
android:text=
"Update Profile"
android:textAllCaps=
"false"
android:textSize=
"20sp"
/>
<Button
android:id=
"@+id/settings_feedback"
style=
"@style/Widget.AppCompat.Button.Borderless"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:drawablePadding=
"16dp"
android:drawableStart=
"@drawable/baseline_feedback_gray_36"
android:gravity=
"center_vertical"
android:padding=
"16dp"
android:text=
"Feedback"
android:textAllCaps=
"false"
android:textSize=
"20sp"
/>
<Button
android:id=
"@+id/settings_about"
style=
"@style/Widget.AppCompat.Button.Borderless"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:drawablePadding=
"16dp"
android:drawableStart=
"@drawable/baseline_info_gray_36"
android:gravity=
"center_vertical"
android:padding=
"16dp"
android:text=
"About"
android:textAllCaps=
"false"
android:textSize=
"20sp"
/>
<Button
android:id=
"@+id/settings_logout"
style=
"@style/Widget.AppCompat.Button.Borderless"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:drawablePadding=
"16dp"
android:drawableStart=
"@drawable/baseline_exit_to_app_gray_36"
android:gravity=
"center_vertical"
android:padding=
"16dp"
android:text=
"Logout"
android:textAllCaps=
"false"
android:textSize=
"20sp"
/>
</LinearLayout>
\ No newline at end of file
app/src/main/res/layout/ppl_search_suggestion_item_view.xml
deleted
100644 → 0
View file @
e863eae4
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
>
<TextView
android:id=
"@+id/suggestion_item"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:hint=
"suggestion"
android:padding=
"8dp"
android:textSize=
"20sp"
/>
</LinearLayout>
\ No newline at end of file
app/src/main/res/values/colors.xml
View file @
6cba242d
...
...
@@ -8,7 +8,6 @@
<color
name=
"primaryTextColor"
>
#fafafa
</color>
<color
name=
"secondaryTextColor"
>
#000000
</color>
<color
name=
"colorCalendarWeek"
>
#000000
</color>
<color
name=
"colorGray"
>
#757575
</color>
<color
name=
"colorWhite"
>
#FFFFFF
</color>
...
...
app/src/main/res/values/strings.xml
View file @
6cba242d
...
...
@@ -6,10 +6,6 @@
<!-- TODO: Remove or change this placeholder text -->
<string
name=
"django_api"
>
<a
href=
"https://github.com/wncc/IITBapp"
>
Django API
</a></string>
<string
name=
"android_app"
>
<a
href=
"https://github.com/wncc/InstiApp"
>
Android App
</a></string>
<string
name=
"angular_pwa"
>
<a
href=
"https://github.com/pulsejet/iitb-app-angular"
>
Angular PWA
</a></string>
<string-array
name=
"hostels_array"
>
<item>
Hostel 1
</item>
<item>
Hostel 2
</item>
...
...
@@ -41,13 +37,11 @@
<string
name=
"vent_your_issues_now"
>
Vent your issues now!
</string>
<string
name=
"venter_super_head"
>
Nobody taking care of your civic complaints? Be it garbage, water, potholes etc.
</string>
<string
name=
"error_message"
>
Please check your Network Connectivity
</string>
<string
name=
"enter_comment"
>
Enter Comment
</string>
<string
name=
"enter_suggestions_if_any"
>
Enter Suggestions (if any)
</string>
<string
name=
"no_complaints"
>
No complaints at the moment
</string>
<string
name=
"initial_message_file_complaint"
>
Please provide the complaint description before submitting
</string>
<string
name=
"getting_current_location"
>
Getting current location.
</string>
<string
name=
"GPS_not_enables"
>
GPS is not enabled!
</string>
<string
name=
"no_permission"
>
No permission!
</string>
<string
name=
"hello_blank_fragment"
>
Hello blank fragment
</string>
<string
name=
"enter_location_details"
>
Enter Location Details
</string>
</resources>
app/src/main/res/values/styles.xml
View file @
6cba242d
...
...
@@ -35,11 +35,6 @@
<item
name=
"windowNoTitle"
>
true
</item>
</style>
<style
name=
"AppThemeDark.NoActionBar"
>
<item
name=
"windowActionBar"
>
false
</item>
<item
name=
"windowNoTitle"
>
true
</item>
</style>
<style
name=
"BlueAccent"
>
<item
name=
"colorAccent"
>
?attr/urlColor
</item>
</style>
...
...
@@ -82,11 +77,6 @@
<item
name=
"android:textSize"
>
12sp
</item>
</style>
<style
name=
"WindowAnimationTransition"
>
<item
name=
"android:windowEnterAnimation"
>
@android:anim/fade_in
</item>
<item
name=
"android:windowExitAnimation"
>
@android:anim/fade_out
</item>
</style>
<style
name=
"MatCalendarHeader"
parent=
"TextAppearance.MaterialCalendarWidget.Header"
>
<item
name=
"android:textColor"
>
@color/primaryTextColor
</item>
<item
name=
"android:textStyle"
>
normal
</item>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment