forked from extern/Unexpected-Keyboard
3b2fad8996
Put the recently copied text at the top and the pinned text at the bottom. This should remain intuitive as the recent history should stay small.
8 lines
549 B
XML
8 lines
549 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<TextView android:id="@+id/clipboard_pin_text" style="@style/clipboardEntry" android:maxLines="3"/>
|
|
<LinearLayout style="@style/clipboardEntryButtons">
|
|
<View android:id="@+id/clipboard_pin_remove" style="@style/clipboardEntryButton" android:background="@android:drawable/ic_menu_delete"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|