Loading res/layout/message_list.xml +3 −13 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/message_list_container" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="?android:attr/colorBackground"> <com.handmark.pulltorefresh.library.PullToRefreshListView android:id="@+id/message_list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:cacheColorHint="?android:attr/colorBackground" android:layout_weight="5" /> </LinearLayout> android:orientation="vertical" /> res/layout/message_list_fragment.xml 0 → 100644 +9 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <com.handmark.pulltorefresh.library.PullToRefreshListView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/message_list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="5" android:background="?android:attr/colorBackground" android:cacheColorHint="?android:attr/colorBackground" /> src/com/fsck/k9/activity/MessageCompose.java +2 −3 Original line number Diff line number Diff line Loading @@ -440,12 +440,11 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc * Save will attempt to replace the message in the given folder with the updated version. * Discard will delete the message from the given folder. * @param context * @param account * @param message */ public static void actionEditDraft(Context context, Account account, Message message) { public static void actionEditDraft(Context context, MessageReference messageReference) { Intent i = new Intent(context, MessageCompose.class); i.putExtra(EXTRA_MESSAGE_REFERENCE, message.makeMessageReference()); i.putExtra(EXTRA_MESSAGE_REFERENCE, messageReference); i.setAction(ACTION_EDIT_DRAFT); context.startActivity(i); } Loading Loading
res/layout/message_list.xml +3 −13 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/message_list_container" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="?android:attr/colorBackground"> <com.handmark.pulltorefresh.library.PullToRefreshListView android:id="@+id/message_list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:cacheColorHint="?android:attr/colorBackground" android:layout_weight="5" /> </LinearLayout> android:orientation="vertical" />
res/layout/message_list_fragment.xml 0 → 100644 +9 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <com.handmark.pulltorefresh.library.PullToRefreshListView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/message_list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="5" android:background="?android:attr/colorBackground" android:cacheColorHint="?android:attr/colorBackground" />
src/com/fsck/k9/activity/MessageCompose.java +2 −3 Original line number Diff line number Diff line Loading @@ -440,12 +440,11 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc * Save will attempt to replace the message in the given folder with the updated version. * Discard will delete the message from the given folder. * @param context * @param account * @param message */ public static void actionEditDraft(Context context, Account account, Message message) { public static void actionEditDraft(Context context, MessageReference messageReference) { Intent i = new Intent(context, MessageCompose.class); i.putExtra(EXTRA_MESSAGE_REFERENCE, message.makeMessageReference()); i.putExtra(EXTRA_MESSAGE_REFERENCE, messageReference); i.setAction(ACTION_EDIT_DRAFT); context.startActivity(i); } Loading