[Android] TextView instead of Button for sign

Geoffrey Métais git at videolan.org
Fri Feb 20 16:22:48 CET 2015


vlc-ports/android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Fri Feb 20 16:18:17 2015 +0100| [874d1bebfcf6a6f049aab1973dde36285cc9ba53] | committer: Geoffrey Métais

TextView instead of Button for sign

> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=874d1bebfcf6a6f049aab1973dde36285cc9ba53
---

 .../src/org/videolan/vlc/gui/dialogs/PickTimeFragment.java       |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/vlc-android/src/org/videolan/vlc/gui/dialogs/PickTimeFragment.java b/vlc-android/src/org/videolan/vlc/gui/dialogs/PickTimeFragment.java
index 8eb70fc..6be1e6f 100644
--- a/vlc-android/src/org/videolan/vlc/gui/dialogs/PickTimeFragment.java
+++ b/vlc-android/src/org/videolan/vlc/gui/dialogs/PickTimeFragment.java
@@ -51,8 +51,8 @@ public abstract class PickTimeFragment extends DialogFragment implements DialogI
     protected static long HOURS_IN_MICROS = 60*MINUTES_IN_MICROS;
 
     protected LibVLC mLibVLC = null;
-    protected TextView mHours, mMinutes, mSeconds, mMillis;
-    protected Button mActionButton, mSign;
+    protected TextView mHours, mMinutes, mSeconds, mMillis, mSign;
+    protected Button mActionButton;
 
     public PickTimeFragment(){}
 
@@ -67,7 +67,7 @@ public abstract class PickTimeFragment extends DialogFragment implements DialogI
         mSeconds = (TextView) view.findViewById(R.id.jump_seconds);
         mMillis = (TextView) view.findViewById(R.id.jump_millis);
         mActionButton = (Button) view.findViewById(R.id.jump_go);
-        mSign = (Button) view.findViewById(R.id.jump_sign);
+        mSign = (TextView) view.findViewById(R.id.jump_sign);
 
         mMinutes.setOnFocusChangeListener(this);
         mSeconds.setOnFocusChangeListener(this);



More information about the Android mailing list