Skip to content
Snippets Groups Projects
Commit 5f753cc6 authored by Alexandre Perraud's avatar Alexandre Perraud
Browse files

Show advanced option help on top

parent d677df9e
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,7 @@ import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.text.TextUtils;
import android.text.format.DateFormat;
import android.view.Gravity;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
......@@ -690,7 +691,9 @@ public class AdvOptionsDialog extends DialogFragment implements View.OnClickList
@Override
public boolean onLongClick(View view) {
Toast.makeText(VLCApplication.getAppContext(), mList.get(getAdapterPosition()).text, Toast.LENGTH_SHORT).show();
Toast toast = Toast.makeText(VLCApplication.getAppContext(), mList.get(getAdapterPosition()).text, Toast.LENGTH_SHORT);
toast.setGravity(Gravity.TOP,0,0);
toast.show();
return true;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment