diff --git a/app/src/main/java/org/ntlab/irisclient/OwnerRoomActivity.java b/app/src/main/java/org/ntlab/irisclient/OwnerRoomActivity.java
new file mode 100644
index 0000000..7b0fb26
--- /dev/null
+++ b/app/src/main/java/org/ntlab/irisclient/OwnerRoomActivity.java
@@ -0,0 +1,52 @@
+package org.ntlab.irisclient;
+
+import androidx.appcompat.app.ActionBar;
+import androidx.appcompat.app.AppCompatActivity;
+import androidx.recyclerview.widget.LinearLayoutManager;
+import androidx.recyclerview.widget.RecyclerView;
+
+import android.os.Bundle;
+import android.view.View;
+import android.widget.Button;
+
+import java.util.Locale;
+
+public class OwnerRoomActivity extends AppCompatActivity {
+
+// private final String[] dataset = new String[20];
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_owner_room);
+
+ //上のバーを消す
+ ActionBar actionBar = getSupportActionBar();
+ if (actionBar != null) {
+ actionBar.hide();
+ }
+
+// RecyclerView recyclerView = findViewById(R.id.my_recycler_view);
+//
+// // use this setting to improve performance if you know that changes
+// // in content do not change the layout size of the RecyclerView
+// recyclerView.setHasFixedSize(true);
+//
+// // use a linear layout manager
+// RecyclerView.LayoutManager rLayoutManager = new LinearLayoutManager(this);
+//
+// recyclerView.setLayoutManager(rLayoutManager);
+//
+// int i = 0;
+// while (i < 10) {
+// dataset[i] = String.format(Locale.ENGLISH, "Data_0%d", i);
+// i++;
+// }
+//
+// MyAdapter adapter = new MyAdapter(dataset);
+// recyclerView.setAdapter(adapter);
+
+
+
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/res/drawable/copy_icon.png b/app/src/main/res/drawable/copy_icon.png
new file mode 100644
index 0000000..efd4310
--- /dev/null
+++ b/app/src/main/res/drawable/copy_icon.png
Binary files differ
diff --git a/app/src/main/res/layout/activity_owner_room.xml b/app/src/main/res/layout/activity_owner_room.xml
new file mode 100644
index 0000000..3d8d964
--- /dev/null
+++ b/app/src/main/res/layout/activity_owner_room.xml
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/recycler_view_item.xml b/app/src/main/res/layout/recycler_view_item.xml
new file mode 100644
index 0000000..87ae671
--- /dev/null
+++ b/app/src/main/res/layout/recycler_view_item.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ids.xml b/app/src/main/res/values/ids.xml
new file mode 100644
index 0000000..d82ad3f
--- /dev/null
+++ b/app/src/main/res/values/ids.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file