Skip to content

Instantly share code, notes, and snippets.

@burnix
Created May 24, 2016 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save burnix/3ec65e5a040a47ccaca720034ee7453f to your computer and use it in GitHub Desktop.
Save burnix/3ec65e5a040a47ccaca720034ee7453f to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:visibility="invisible"
android:id="@+id/main_container"
android:orientation="vertical">
<io.codetail.widget.RevealFrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:id="@+id/view"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/container_settings">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.android.itea.views.BoldTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:gravity="center"
android:text="Язык"
android:textColor="@color/black"
android:textSize="20dp" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="24dp"
android:layout_marginRight="24dp"
android:background="@drawable/switch_stroke"
android:checkedButton="@+id/offer"
android:orientation="horizontal">
<com.android.itea.views.RegularRadioButton
android:id="@+id/offer"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Русский"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
<com.android.itea.views.RegularRadioButton
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginRight="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Українська"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
</RadioGroup>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.android.itea.views.BoldTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:gravity="center"
android:text="Основной город"
android:textColor="@color/black"
android:textSize="20dp" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="24dp"
android:layout_marginRight="24dp"
android:background="@drawable/switch_stroke"
android:checkedButton="@+id/offer2"
android:orientation="horizontal">
<com.android.itea.views.RegularRadioButton
android:id="@+id/offer2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Киев"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
<com.android.itea.views.RegularRadioButton
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginRight="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Львов"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
</RadioGroup>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.android.itea.views.BoldTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:gravity="center"
android:text="Уведомления"
android:textColor="@color/black"
android:textSize="20dp" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="24dp"
android:layout_marginRight="24dp"
android:background="@drawable/switch_stroke"
android:checkedButton="@+id/offer3"
android:orientation="horizontal">
<com.android.itea.views.RegularRadioButton
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Выкл"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
<com.android.itea.views.RegularRadioButton
android:id="@+id/offer3"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginRight="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Вкл"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
</RadioGroup>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.android.itea.views.BoldTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:gravity="center"
android:text="Звук напоминания"
android:textColor="@color/black"
android:textSize="20dp" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="24dp"
android:layout_marginRight="24dp"
android:background="@drawable/switch_stroke"
android:checkedButton="@+id/offer4"
android:orientation="horizontal">
<com.android.itea.views.RegularRadioButton
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Выкл"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
<com.android.itea.views.RegularRadioButton
android:id="@+id/offer4"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginRight="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Вкл"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
</RadioGroup>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.android.itea.views.BoldTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:gravity="center"
android:text="Добавить в календарь"
android:textColor="@color/black"
android:textSize="20dp" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="24dp"
android:layout_marginRight="24dp"
android:background="@drawable/switch_stroke"
android:checkedButton="@+id/offer5"
android:orientation="horizontal">
<com.android.itea.views.RegularRadioButton
android:id="@+id/offer5"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Выкл"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
<com.android.itea.views.RegularRadioButton
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginRight="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1"
android:background="@drawable/toggle_switch_left"
android:button="@null"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
android:text="Вкл"
android:textColor="@drawable/switch_text_color"
android:textSize="20sp" />
</RadioGroup>
</LinearLayout>
</LinearLayout>
</io.codetail.widget.RevealFrameLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment