Newer
Older
NemophilaClient / app / src / main / res / layout / activity_main.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:map="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8.  
  9. <fragment
  10. android:id="@+id/map"
  11. android:name="com.google.android.gms.maps.SupportMapFragment"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. android:visibility="gone"
  15. tools:context=".MainActivity" />
  16.  
  17. <RelativeLayout
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent">
  20.  
  21. <!-- 現在地ボタン クリックで画面中央を現在地に移動-->
  22. <ImageButton
  23. android:id="@+id/currentButton"
  24. android:layout_width="50dp"
  25. android:layout_height="50dp"
  26. android:layout_alignParentRight="true"
  27. android:layout_alignParentBottom="true"
  28. android:layout_marginRight="20dp"
  29. android:layout_marginBottom="30dp"
  30. android:background="@drawable/circle_button"
  31. android:src="@drawable/ic_current_location"
  32. android:scaleType="fitCenter"
  33. android:padding="10dp"
  34. android:visibility="gone"
  35. />
  36.  
  37. <!-- マイページボタン クリックでマイページに移動-->
  38. <ImageButton
  39. android:id="@+id/myPageButton"
  40. android:layout_width="50dp"
  41. android:layout_height="50dp"
  42. android:layout_alignParentTop="true"
  43. android:layout_alignParentRight="true"
  44. android:layout_marginTop="20dp"
  45. android:layout_marginRight="20dp"
  46. android:background="@drawable/circle_button"
  47. android:src="@drawable/ic_mypage"
  48. android:scaleType="fitCenter"
  49. android:padding="7dp"
  50. />
  51.  
  52. </RelativeLayout>
  53.  
  54. <LinearLayout
  55. android:id="@+id/LL_Load"
  56. android:layout_width="match_parent"
  57. android:layout_height="match_parent"
  58. android:orientation="vertical"
  59. android:gravity="center"
  60. >
  61. <TextView
  62. android:layout_width="wrap_content"
  63. android:layout_height="wrap_content"
  64. android:text="ロード中です..."
  65. />
  66. <ProgressBar
  67. android:layout_width="wrap_content"
  68. android:layout_height="wrap_content"
  69. />
  70. </LinearLayout>
  71.  
  72. </FrameLayout>