* #34637: replaced ActionBar tabs with sliding page strip
diff --git a/res/layout/activity_account_settings.xml b/res/layout/activity_account_settings.xml
new file mode 100644
index 0000000..6e3717a
--- /dev/null
+++ b/res/layout/activity_account_settings.xml
@@ -0,0 +1,22 @@
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res/org.sflphone"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:orientation="vertical" >
+
+    <org.sflphone.views.PagerSlidingTabStrip
+        android:id="@+id/pager_sliding_strip"
+        android:layout_width="match_parent"
+        android:layout_height="?android:attr/actionBarSize"
+        android:layout_alignParentTop="true"
+        android:background="@color/sfl_blue_0"
+        app:indicatorColor="@color/sfl_light_blue"
+        app:underlineColor="@color/sfl_light_blue" />
+
+    <android.support.v4.view.ViewPager
+        android:id="@+id/pager"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:paddingTop="?android:attr/actionBarSize" />
+
+</RelativeLayout>
\ No newline at end of file