Fixed issues with compressed task rows, more section->details in beast mode prefs

pull/14/head
Sam Bosley 14 years ago
parent a2940ebbc4
commit c5779c03fe

@ -40,8 +40,9 @@
<com.todoroo.astrid.ui.CheckableImageView
android:id="@+id/completeBox"
android:layout_width="45dip"
android:padding="8dip"
android:layout_height="fill_parent"
android:layout_height="wrap_content"
android:minHeight="30dip"
android:scaleType="center"
android:layout_alignParentTop="true"
android:layout_marginLeft="2dip"
android:button="@drawable/btn_check" />

@ -19,8 +19,8 @@
android:id="@+id/rowBody"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dip"
android:layout_marginBottom="6dip"
android:layout_marginTop="5dip"
android:layout_marginBottom="5dip"
android:minHeight="45dip">
<ImageView
@ -48,10 +48,9 @@
<com.todoroo.astrid.ui.CheckableImageView
android:id="@+id/completeBox"
android:layout_width="45dip"
android:padding="8dip"
android:layout_marginLeft="5dip"
android:layout_height="fill_parent"
android:minHeight="40dip"
android:layout_height="wrap_content"
android:minHeight="30dip"
android:scaleType="center"
android:layout_centerVertical="true" />
@ -82,7 +81,6 @@
android:id="@+id/taskActionContainer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minHeight="40dip"
android:layout_marginRight="4dip"
android:orientation="vertical"
android:gravity="right|center_vertical">

@ -400,7 +400,7 @@
<string name="TEA_control_title">Task Title</string>
<string name="TEA_control_who">Who</string>
<string name="TEA_control_when">When</string>
<string name="TEA_control_more_section">----More Section----</string>
<string name="TEA_control_more_section">----Details----</string>
<string name="TEA_control_importance">Importance</string>
<string name="TEA_control_lists">Lists</string>
<string name="TEA_control_notes">Notes</string>

@ -215,7 +215,7 @@ public class TaskAdapter extends CursorAdapter implements Filterable {
displayMetrics = new DisplayMetrics();
fragment.getActivity().getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
this.minRowHeight = (int) (4 * displayMetrics.density);
this.minRowHeight = (int) (45 * displayMetrics.density);
startDetailThread();
startTaskActionsThread();

Loading…
Cancel
Save