summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/simulator/Simulator.java
diff options
context:
space:
mode:
authoryueg <yueg@google.com>2017-09-12 11:10:45 -0700
committerEric Erfanian <erfanian@google.com>2017-09-13 14:15:01 -0700
commit7f78e9a692d7d7ca1f1204421adce91545a880f8 (patch)
tree955bc0586790d75ec67753586e905eccf4224d98 /java/com/android/dialer/simulator/Simulator.java
parentb21b9f9b2efbc358ee9806af87b7edc3f82af4da (diff)
Log swiping and clicking for switching tabs.
If it's a swipe, onPageScrolled() is called several times before onPageScrollStateChanged(SCROLL_STATE_SETTLING) and onPageSelected(). If it's a click, only onPageScrollStateChanged(SCROLL_STATE_SETTLING) is called before onPageSelected(). And onPageScrollStateChanged(SCROLL_STATE_SETTLING) will not be called if user don't switch to a new tab. We use the difference to tell if user switching tabs by swiping or clicking. Test: DialtactsActivityTest PiperOrigin-RevId: 168403148 Change-Id: Iaaf84ab9c4955d0bc2c1e9857ba59fd37b3984af
Diffstat (limited to 'java/com/android/dialer/simulator/Simulator.java')
-rw-r--r--java/com/android/dialer/simulator/Simulator.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/java/com/android/dialer/simulator/Simulator.java b/java/com/android/dialer/simulator/Simulator.java
index f4164158e..f753e5f6b 100644
--- a/java/com/android/dialer/simulator/Simulator.java
+++ b/java/com/android/dialer/simulator/Simulator.java
@@ -22,6 +22,7 @@ import android.support.annotation.Nullable;
import android.view.ActionProvider;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
+import java.util.Objects;
/** Used to add menu items to the Dialer menu to test the app using simulated calls and data. */
public interface Simulator {
@@ -42,6 +43,7 @@ public interface Simulator {
DISCONNECT,
STATE_CHANGE,
DTMF,
+ SESSION_MODIFY_REQUEST,
})
public @interface Type {}
@@ -53,6 +55,7 @@ public interface Simulator {
public static final int DISCONNECT = 5;
public static final int STATE_CHANGE = 6;
public static final int DTMF = 7;
+ public static final int SESSION_MODIFY_REQUEST = 8;
@Type public final int type;
/** Holds event specific information. For example, for DTMF this could be the keycode. */
@@ -71,5 +74,24 @@ public interface Simulator {
this.data1 = data1;
this.data2 = data2;
}
+
+ @Override
+ public boolean equals(Object other) {
+ if (this == other) {
+ return true;
+ }
+ if (!(other instanceof Event)) {
+ return false;
+ }
+ Event event = (Event) other;
+ return type == event.type
+ && Objects.equals(data1, event.data1)
+ && Objects.equals(data2, event.data2);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(Integer.valueOf(type), data1, data2);
+ }
}
}