mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-02 00:25:10 -04:00
591a3af6dc
always-available select action. For the moment, this means that widgets_on_left does nothing at all. based on feedback, I may kill the preference and multi-mode behaviour entirely in favor of "show stars?" (and possibly "show stars on left" Stars, "checkboxes" and color bars updated to actually fit in wide mode.
20 lines
830 B
XML
20 lines
830 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/widgets"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_width="30dip"
|
|
android:layout_height="30dip"
|
|
>
|
|
<CheckBox
|
|
android:id="@+id/flagged"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="false"
|
|
style="?android:attr/starStyle"
|
|
android:layout_gravity="center_vertical"
|
|
/>
|
|
<!-- http://stackoverflow.com/questions/1121192/android-custom-listview-unable-to-click-on-items
|
|
we want something a bit bigger than it is right now -->
|
|
</LinearLayout>
|