2013-06-28 03:57:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2015-07-13 22:45:14 +00:00
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-06-08 15:54:16 +00:00
|
|
|
<LinearLayout android:background="?emoji_tab_strip_background"
|
2014-07-30 22:37:04 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
2015-05-18 21:33:11 +00:00
|
|
|
android:layout_height="40dp">
|
2014-07-30 22:37:04 +00:00
|
|
|
|
|
|
|
<com.astuetz.PagerSlidingTabStrip android:id="@+id/tabs"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="0dp"
|
2015-05-18 21:33:11 +00:00
|
|
|
android:layout_height="match_parent"
|
2015-06-08 15:54:16 +00:00
|
|
|
android:background="?emoji_tab_strip_background"
|
2015-05-06 20:53:55 +00:00
|
|
|
app:pstsShouldExpand="true"
|
|
|
|
app:pstsTabPaddingLeftRight="@dimen/emoji_drawer_left_right_padding"
|
2015-06-08 15:54:16 +00:00
|
|
|
app:pstsUnderlineColor="?emoji_tab_underline"
|
|
|
|
app:pstsIndicatorColor="?emoji_tab_indicator"
|
2015-05-18 21:33:11 +00:00
|
|
|
app:pstsIndicatorHeight="@dimen/emoji_drawer_indicator_height" />
|
|
|
|
|
|
|
|
<View android:layout_width="1px"
|
|
|
|
android:layout_height="match_parent"
|
2015-06-08 15:54:16 +00:00
|
|
|
android:background="?emoji_tab_seperator"
|
2015-05-18 21:33:11 +00:00
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginBottom="10dp" />
|
2014-07-30 22:37:04 +00:00
|
|
|
|
2015-04-14 22:20:21 +00:00
|
|
|
<org.thoughtcrime.securesms.components.RepeatableImageKey
|
|
|
|
android:id="@+id/backspace"
|
2015-06-08 15:54:16 +00:00
|
|
|
android:background="?emoji_tab_strip_background"
|
2015-05-18 21:33:11 +00:00
|
|
|
android:src="@drawable/ic_backspace_grey600_24dp"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
2015-04-14 22:20:21 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent" />
|
2014-07-30 22:37:04 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-05-06 20:53:55 +00:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/emoji_pager"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:layout_width="match_parent"
|
2015-07-31 17:15:37 +00:00
|
|
|
android:layout_height="match_parent" />
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2015-07-13 22:45:14 +00:00
|
|
|
</merge>
|