Skip to content

Commit

Permalink
feat:add finger scribble demo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward259 committed Aug 6, 2024
1 parent 1ae6377 commit 3d12539
Show file tree
Hide file tree
Showing 5 changed files with 501 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
<activity android:name="com.android.onyx.demo.DictionaryActivity"/>
<activity android:name="com.android.onyx.demo.RefreshModeDemoActivity" />
<activity android:name="com.android.onyx.demo.EacDemoActivity" />
<activity android:name="com.android.onyx.demo.scribble.ScribbleFingerTouchDemoActivity" />
<activity android:name="com.android.onyx.demo.BooxSettingsDemoActivity" />

<provider
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ public void button_epd_controller(View view) {
go(ScribbleEpdControllerDemoActivity.class);
}

public void gotoScribbleFingerTouchDemo(View view) {
go(ScribbleFingerTouchDemoActivity.class);
}

private void go(Class<?> activityClass) {
startActivity(new Intent(this, activityClass));
}
Expand Down
Loading

0 comments on commit 3d12539

Please sign in to comment.