Skip to content
Snippets Groups Projects
Commit 829f6c71 authored by Martin Strbacka's avatar Martin Strbacka
Browse files

Fixed wrong emty list messages.

parent 6e187342
Branches
Tags
No related merge requests found
...@@ -31,6 +31,7 @@ import android.widget.TextView; ...@@ -31,6 +31,7 @@ import android.widget.TextView;
import com.actionbarsherlock.app.SherlockListFragment; import com.actionbarsherlock.app.SherlockListFragment;
import cz.nic.datovka.R; import cz.nic.datovka.R;
import cz.nic.datovka.activities.AppUtils;
import cz.nic.datovka.connector.DatabaseHelper; import cz.nic.datovka.connector.DatabaseHelper;
import cz.nic.datovka.contentProviders.MessageListCursorAdapter; import cz.nic.datovka.contentProviders.MessageListCursorAdapter;
import cz.nic.datovka.contentProviders.MessagesContentProvider; import cz.nic.datovka.contentProviders.MessagesContentProvider;
...@@ -41,10 +42,10 @@ public class MessageListFragment extends SherlockListFragment implements LoaderC ...@@ -41,10 +42,10 @@ public class MessageListFragment extends SherlockListFragment implements LoaderC
private static String MSGBOXID = "msgboxid"; private static String MSGBOXID = "msgboxid";
private static String MSG_FOLDER = "msgfolder"; private static String MSG_FOLDER = "msgfolder";
public static MessageListFragment getInstance(String arg, int folder){ public static MessageListFragment getInstance(String msgBoxID, int folder){
MessageListFragment rmlf = new MessageListFragment(); MessageListFragment rmlf = new MessageListFragment();
Bundle bundle = new Bundle(); Bundle bundle = new Bundle();
bundle.putString(MSGBOXID, arg); bundle.putString(MSGBOXID, msgBoxID);
bundle.putInt(MSG_FOLDER, folder); bundle.putInt(MSG_FOLDER, folder);
rmlf.setArguments(bundle); rmlf.setArguments(bundle);
...@@ -55,7 +56,11 @@ public class MessageListFragment extends SherlockListFragment implements LoaderC ...@@ -55,7 +56,11 @@ public class MessageListFragment extends SherlockListFragment implements LoaderC
public void onActivityCreated(Bundle savedInstanceState) { public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState); super.onActivityCreated(savedInstanceState);
updateList(); updateList();
this.setEmptyText(getString(R.string.empty_inbox_message));
if(getArguments().getInt(MSG_FOLDER) == AppUtils.INBOX)
this.setEmptyText(getString(R.string.empty_inbox_message));
else
this.setEmptyText(getString(R.string.empty_outbox_message));
} }
public Loader<Cursor> onCreateLoader(int arg0, Bundle arg1) { public Loader<Cursor> onCreateLoader(int arg0, Bundle arg1) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment