2013-06-28 03:57:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/emoji_pager"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2013-06-29 16:51:08 +00:00
|
|
|
android:background="#ff333333"
|
2013-06-28 03:57:27 +00:00
|
|
|
android:minHeight="100dip">
|
|
|
|
|
|
|
|
<android.support.v4.view.PagerTabStrip
|
|
|
|
android:id="@+id/emoji_tab_strip"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="top"
|
2013-06-29 16:51:08 +00:00
|
|
|
android:background="#ff333333"
|
2013-06-28 03:57:27 +00:00
|
|
|
android:textColor="#fff"
|
|
|
|
android:paddingTop="3dp"
|
|
|
|
android:paddingBottom="3dp"
|
|
|
|
android:paddingLeft="32dip"
|
|
|
|
android:paddingRight="32dip"/>
|
|
|
|
|
|
|
|
</android.support.v4.view.ViewPager>
|
|
|
|
|
|
|
|
</FrameLayout>
|