hiding repeat stuff, removing logging

pull/14/head
Tim Su 14 years ago
parent 187c878458
commit 8444bce934

@ -213,6 +213,7 @@
<LinearLayout <LinearLayout
android:orientation="horizontal" android:orientation="horizontal"
android:paddingRight="10dip" android:paddingRight="10dip"
android:visibility="gone"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<Button <Button
@ -223,7 +224,6 @@
<Spinner <Spinner
android:id="@+id/repeat_interval" android:id="@+id/repeat_interval"
android:layout_weight="1" android:layout_weight="1"
android:layout_marginRight="10dip"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" /> android:layout_height="wrap_content" />
</LinearLayout> </LinearLayout>
@ -232,6 +232,7 @@
<View <View
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="1dip" android:layout_height="1dip"
android:visibility="gone"
android:padding="5dip" android:padding="5dip"
android:background="@android:drawable/divider_horizontal_dark" /> android:background="@android:drawable/divider_horizontal_dark" />

@ -1,7 +1,5 @@
package com.todoroo.astrid.service; package com.todoroo.astrid.service;
import android.util.Log;
import com.todoroo.andlib.data.Property; import com.todoroo.andlib.data.Property;
import com.todoroo.andlib.data.TodorooCursor; import com.todoroo.andlib.data.TodorooCursor;
import com.todoroo.andlib.data.Property.CountProperty; import com.todoroo.andlib.data.Property.CountProperty;
@ -76,7 +74,6 @@ public class MetadataService {
Query query = Query.select(Metadata.VALUE.as(Metadata.VALUE.name), count). Query query = Query.select(Metadata.VALUE.as(Metadata.VALUE.name), count).
join(Join.inner(Task.TABLE, Metadata.TASK.eq(Task.ID))). join(Join.inner(Task.TABLE, Metadata.TASK.eq(Task.ID))).
where(where).orderBy(order).groupBy(Metadata.VALUE); where(where).orderBy(order).groupBy(Metadata.VALUE);
Log.e("ERW", query.toString());
TodorooCursor<Metadata> cursor = metadataDao.query(query); TodorooCursor<Metadata> cursor = metadataDao.query(query);
return cursor; return cursor;
} }

Loading…
Cancel
Save