Commit a9cada49 authored by Varun Patil's avatar Varun Patil

Fix map for dark theme

parent fb85385f
......@@ -661,7 +661,7 @@ public class MapFragment extends Fragment implements TextWatcher,
View headerLayout = childrenView.findViewById(R.id.header_layout);
TextView headerName = (TextView) childrenView
.findViewById(R.id.list_header);
String headerText = "inside ";
String headerText = "Inside ";
if (building.getShortName().equals("0"))
headerText += building.getName();
else
......@@ -696,6 +696,8 @@ public class MapFragment extends Fragment implements TextWatcher,
});
icon.setImageResource(R.drawable.ic_action_next_item);
headerLayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
......
......@@ -72,7 +72,8 @@
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:paddingTop="8dp"
android:textSize="@dimen/place_name_text_size"></TextView>
android:textColor="@color/colorGray"
android:textSize="@dimen/place_name_text_size" />
<TextView
android:id="@+id/place_sub_head"
......
......@@ -7,5 +7,6 @@
android:fontFamily="sans-serif-light"
android:minHeight="56dp"
android:padding="8dp"
android:textSize="18dp" />
android:textSize="18dp"
android:textColor="@color/secondaryTextColor" />
......@@ -28,7 +28,8 @@
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
android:paddingLeft="8dp" />
android:paddingLeft="8dp"
android:textColor="@color/secondaryTextColor" />
</LinearLayout>
<ListView
......
......@@ -11,6 +11,7 @@
android:padding="8dp"
android:paddingBottom="0dp"
android:text="Description"
android:textColor="@color/colorGray"
android:textSize="20sp" />
<TextView
......@@ -22,7 +23,8 @@
android:padding="8dp"
android:paddingTop="0dp"
android:textIsSelectable="true"
android:textSize="18sp" />
android:textSize="18sp"
android:textColor="@color/secondaryTextColor" />
<View
android:layout_width="match_parent"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment