diff --git a/res/layout/group_create_activity.xml b/res/layout/group_create_activity.xml
index 9388d60aa7..e707dd44c3 100644
--- a/res/layout/group_create_activity.xml
+++ b/res/layout/group_create_activity.xml
@@ -12,6 +12,7 @@
android:layout_marginBottom="20dp">
+
+
+
+
+
+
+
() {
+
+ @Override
+ protected Void doInBackground(Void... voids) {
+ try {
+ Thread.sleep(5000); // todo network things
+ } catch (InterruptedException e) {
+ Thread.currentThread().interrupt();
+ }
+ return null;
+ }
+
+ @Override
+ protected void onPostExecute(Void aVoid) {
+ super.onPostExecute(aVoid);
+ finish();
+ }
+
+ @Override
+ protected void onProgressUpdate(Void... values) {
+ super.onProgressUpdate(values);
+ }
+ }.execute();
return true;
}