Skip to content

Commit

Permalink
PR changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ognjen Manevski committed Dec 18, 2017
1 parent ed98df2 commit 7e276d7
Showing 1 changed file with 31 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="org.restcomm.android.olympus.SigninActivity">
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="org.restcomm.android.olympus.SigninActivity">

<TextView
android:layout_width="wrap_content"
Expand All @@ -31,6 +31,16 @@
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:id="@+id/sip_configuration_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textColor="@color/colorAccent"
android:text="SIP Configuration"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"/>

<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
Expand Down Expand Up @@ -79,6 +89,16 @@

</android.support.design.widget.TextInputLayout>

<TextView
android:id="@+id/push_configuration_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Push Configuration"
android:textStyle="bold"
android:textColor="@color/colorAccent"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"/>

<android.support.v7.widget.SwitchCompat
android:id="@+id/switch_enable_push"
android:layout_marginStart="4dp"
Expand Down Expand Up @@ -167,4 +187,4 @@

</LinearLayout>
</ScrollView>
</LinearLayout>
</LinearLayout>

0 comments on commit 7e276d7

Please sign in to comment.