You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
metu.life-android/app/src/main/res/layout/item_emoji_picker.xml

24 lines
814 B

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="250dp"
android:orientation="vertical">
<com.google.android.material.tabs.TabLayout
android:id="@+id/picker_tabs"
android:layout_width="match_parent"
android:layout_height="48dp"
app:tabMaxWidth="0dp"
app:tabMinWidth="0dp"
app:tabGravity="fill"
app:tabMode="scrollable" />
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/picker_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="?attr/windowBackgroundColor" />
</LinearLayout>