diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 9156e1a..a2d6765 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -18,6 +18,8 @@
+
+
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
diff --git a/gradle.properties b/gradle.properties
index 52f5917..b0b4cc4 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -6,7 +6,7 @@
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
-org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+org.gradle.jvmargs=-Xms512m -Xmx1024m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects