fragment_threatmap_infowindow.xml 888 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <TextView
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:textAppearance="?android:attr/textAppearanceMedium"
  10. android:id="@+id/threatmap_infowindow_title" android:layout_gravity="center_horizontal"/>
  11. <TextView
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:textAppearance="?android:attr/textAppearanceSmall"
  15. android:text="@string/threatmap_show_records"
  16. android:id="@id/record_details_text_ssid" android:layout_gravity="center_horizontal"
  17. android:textColor="@color/dark_grey" android:clickable="false"
  18. android:textIsSelectable="false"/>
  19. </LinearLayout>