-Reduced text size for hold to append tip.
-Added options to turn off hold to append tip.
This commit is contained in:
parent
eb9770e3ba
commit
21d42c92e5
5 changed files with 11 additions and 1 deletions
|
|
@ -480,6 +480,8 @@ public class VideoDetailFragment extends BaseStateFragment<StreamInfo> implement
|
|||
return new View.OnTouchListener() {
|
||||
@Override
|
||||
public boolean onTouch(View view, MotionEvent motionEvent) {
|
||||
if (!PreferenceManager.getDefaultSharedPreferences(activity).getBoolean(getString(R.string.show_hold_to_append_key), true)) return false;
|
||||
|
||||
if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
|
||||
appendControlsDetail.setVisibility(View.VISIBLE);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue