mirror of https://github.com/FongMi/TV.git
parent
aecc50d130
commit
c7842e6731
@ -1,17 +1,17 @@ |
||||
package com.fongmi.android.tv.utils; |
||||
package com.fongmi.android.tv.ui.custom; |
||||
|
||||
import android.view.KeyEvent; |
||||
|
||||
public class KeyDown { |
||||
public class CustomKeyDown { |
||||
|
||||
private final Listener mListener; |
||||
private int mHoldTime; |
||||
|
||||
public static KeyDown create(Listener listener) { |
||||
return new KeyDown(listener); |
||||
public static CustomKeyDown create(Listener listener) { |
||||
return new CustomKeyDown(listener); |
||||
} |
||||
|
||||
private KeyDown(Listener listener) { |
||||
private CustomKeyDown(Listener listener) { |
||||
this.mListener = listener; |
||||
} |
||||
|
||||
@ -1,4 +1,4 @@ |
||||
package com.fongmi.android.tv.ui.custom; |
||||
package com.fongmi.android.tv.ui.custom.dialog; |
||||
|
||||
import android.app.Activity; |
||||
import android.content.DialogInterface; |
||||
@ -1,4 +1,4 @@ |
||||
package com.fongmi.android.tv.ui.custom; |
||||
package com.fongmi.android.tv.ui.custom.dialog; |
||||
|
||||
import android.app.Activity; |
||||
import android.view.LayoutInflater; |
||||
Loading…
Reference in new issue