Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions app/src/main/res/layout/fragment_search_location.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,27 @@
android:layout_height="wrap_content"
android:inputType="textCapWords"
app:iconifiedByDefault="false"
app:queryHint="@string/where"
app:queryHint="@string/location_hint"
app:searchIcon="@null" />

<LinearLayout
android:id="@+id/currentLocation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">

<ImageView
android:id="@+id/locationButtonIcon"
android:layout_width="@dimen/item_image_view_medium"
android:layout_height="@dimen/item_image_view_medium"
android:layout_margin="@dimen/layout_margin_medium"
app:srcCompat="@drawable/ic_location_pin" />

<TextView
android:id="@+id/locationButtonText"
android:layout_width="wrap_content"
android:layout_height="@dimen/item_image_view_medium"
android:layout_height="wrap_content"
android:layout_margin="@dimen/layout_margin_medium"
android:text="@string/current_location"
android:textColor="@color/colorPrimary"
Expand All @@ -41,6 +44,6 @@
android:layout_gravity="center"
android:layout_marginStart="@dimen/layout_margin_large"
android:layout_marginLeft="@dimen/layout_margin_large"
android:visibility="gone"/>
android:visibility="gone" />
</LinearLayout>
</LinearLayout>
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<string name="profile">Profile</string>
<string name="likes">Likes</string>
<string name="saved_date">savedDate</string>
<string name="location_hint">Enter a location</string>

<!--event details-->
<string name="event_card_date">Event Date :</string>
Expand Down