質問編集履歴

1

ソースコードの追加

2022/05/23 09:35

投稿

eotw
eotw

スコア48

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  ### 該当のソースコード
12
12
 
13
- ```kotlin
13
+ ```MapActivity
14
14
  class MapActivity : AppCompatActivity(), OnMapReadyCallback, GoogleMap.OnMarkerClickListener {
15
15
 
16
16
  override fun onCreate(savedInstanceState: Bundle?) {
@@ -44,3 +44,27 @@
44
44
  }
45
45
  ```
46
46
 
47
+ ```shop_info_fragment
48
+ <?xml version="1.0" encoding="utf-8"?>
49
+
50
+ <layout
51
+ xmlns:android="http://schemas.android.com/apk/res/android"
52
+ xmlns:tools="http://schemas.android.com/tools" >
53
+
54
+ <FrameLayout
55
+ android:id="@+id/container"
56
+ android:layout_width="match_parent"
57
+ android:layout_height="match_parent"
58
+ tools:context=".screens.shopInfo.ShopInfoFragment">
59
+
60
+ <!-- TODO: Update blank fragment layout -->
61
+ <TextView
62
+ android:layout_width="match_parent"
63
+ android:layout_height="match_parent"
64
+ android:text="@string/hello_blank_fragment" />
65
+
66
+ </FrameLayout>
67
+
68
+ </layout>
69
+ ```
70
+