This commit is contained in:
Meir Ben Itay 2020-04-22 11:07:55 -07:00
Родитель 8c75d35325
Коммит 4681e3823c
27 изменённых файлов: 763 добавлений и 0 удалений

1
PenEvents/.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1 @@
/build

41
PenEvents/build.gradle Normal file
Просмотреть файл

@ -0,0 +1,41 @@
/*
*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*
*/
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "om.microsoft.device.display.samples"
minSdkVersion 29
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

21
PenEvents/proguard-rules.pro поставляемый Normal file
Просмотреть файл

@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

Просмотреть файл

@ -0,0 +1,34 @@
/*
*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*
*/
package om.microsoft.device.display.samples;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("om.microsoft.device.display.samples", appContext.getPackageName());
}
}

Просмотреть файл

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~ Copyright (c) Microsoft Corporation. All rights reserved.
~ Licensed under the MIT License.
~
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="om.microsoft.device.display.samples">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

Просмотреть файл

@ -0,0 +1,202 @@
/*
*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*
*/
package om.microsoft.device.display.samples;
import android.annotation.SuppressLint;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.graphics.SurfaceTexture;
import android.os.Bundle;
import android.util.Log;
import android.view.MotionEvent;
import android.view.TextureView;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import static java.lang.String.format;
public class MainActivity extends AppCompatActivity {
private static final String DEBUG_TAG = "PenEventsDebug";
TextView txt, txtAction, txtPreasure, txtOrientation, buttonState, txtCoords, txtTilt;
TextureView texture;
boolean canDraw = false;
Paint paint = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
txt = findViewById(R.id.txtText);
txtAction = findViewById(R.id.txtAction);
txtPreasure = findViewById(R.id.txtPreasure);
txtOrientation = findViewById(R.id.txtOrientation);
buttonState = findViewById(R.id.txtButton);
txtCoords = findViewById(R.id.txtCoords);
texture = findViewById(R.id.txtView);
txtTilt = findViewById(R.id.txtTilt);
paint = new Paint();
texture.setSurfaceTextureListener(new TextureView.SurfaceTextureListener() {
@Override
public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {
canDraw = true;
}
@Override
public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {
}
@Override
public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
canDraw = false;
return false;
}
@Override
public void onSurfaceTextureUpdated(SurfaceTexture surface) {
}
});
}
@SuppressLint("DefaultLocale")
@Override
public boolean onTouchEvent(MotionEvent event) {
String logString;
boolean handled;
if (event.getToolType(0) == MotionEvent.TOOL_TYPE_STYLUS)
logString = "Pen ";
else if (event.getToolType(0) == MotionEvent.TOOL_TYPE_ERASER)
logString = "Eraser ";
else if (event.getToolType(0) == MotionEvent.TOOL_TYPE_FINGER)
logString = "Finger ";
else if (event.getToolType(0) == MotionEvent.TOOL_TYPE_MOUSE)
logString = "Mouse ";
else
logString = "UNKNOWN device " + event.getToolType(0);
txt.setText(logString);
txtPreasure.setText(format("%s%s", getString(R.string.Pressure), event.getPressure()));
txtOrientation.setText(format("%s%s", getString(R.string.Orientation), event.getOrientation()));
buttonState.setText(format("%s%d", getString(R.string.ButtonState), event.getButtonState()));
txtCoords.setText(format("%s%s, %s", getString(R.string.Location), event.getRawX(), event.getRawY()));
txtTilt.setText(format("%s%s", getString(R.string.Tilt), event.getAxisValue(MotionEvent.AXIS_TILT)));
int action = event.getActionMasked();
switch (action) {
case (MotionEvent.ACTION_DOWN):
txtAction.setText(R.string.ActionDown);
logString += " Action was DOWN ";
handled = true;
break;
case (MotionEvent.ACTION_MOVE):
txtAction.setText(R.string.ActionMove);
logString += " Action was MOVE ";
handled = true;
break;
case (MotionEvent.ACTION_UP):
txtAction.setText(R.string.ActionUp);
logString += " Action was UP ";
handled = true;
break;
case (MotionEvent.ACTION_CANCEL):
txtAction.setText(R.string.ActionCancel);
logString += " Action was CANCEL ";
handled = true;
break;
case (MotionEvent.ACTION_HOVER_ENTER):
txtAction.setText(R.string.ActionHoverEnter);
logString += " Action was HOVER_ENTER";
handled = true;
break;
case (MotionEvent.ACTION_HOVER_EXIT):
txtAction.setText(R.string.ActionHoverExit);
logString += " Action was HOVER_EXIT";
handled = true;
break;
case (MotionEvent.ACTION_HOVER_MOVE):
txtAction.setText(R.string.ActionHoverMove);
logString += " Action was HOVER_MOVE";
handled = true;
break;
case (MotionEvent.ACTION_BUTTON_PRESS):
txtAction.setText(R.string.ActionButtonPress);
logString += " Action was Button Press";
handled = true;
break;
case (MotionEvent.ACTION_BUTTON_RELEASE):
txtAction.setText(R.string.ActionButtonRelease);
logString += " Action was BUTTON_RELEASE";
handled = true;
break;
default:
logString += "DEFAULT!!! " + action;
handled = super.onTouchEvent(event);
}
Log.i(DEBUG_TAG, logString);
drawEvent(event);
return handled;
}
void drawEvent(MotionEvent event) {
final String BOLD_PINK = "#ee00FF";
final String MAGIC_BLUE = "#05a5eC";
final String BOLD_RED = "#CD5C5C";
final int GRASS_GREEN = 0xAA00bb55;
final float RAD = 57.2958f;
Canvas canvas = texture.lockCanvas();
paint.setStyle(Paint.Style.FILL);
paint.setColor(Color.WHITE);
canvas.drawPaint(paint);
if (event.getAction() == MotionEvent.ACTION_UP || event.getAction() == MotionEvent.ACTION_CANCEL) {
texture.unlockCanvasAndPost(canvas);
return;
}
if (event.getToolType(0) == MotionEvent.TOOL_TYPE_ERASER) {
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(20);
}
// Use Color.parseColor to define HTML colors
if (event.getButtonState() != 0) {
paint.setColor(Color.parseColor(BOLD_PINK));
} else {
paint.setColor(Color.parseColor(MAGIC_BLUE));
}
canvas.drawCircle(texture.getWidth() / 4.0f, texture.getHeight() / 4.0f, texture.getHeight() / 4.0f * event.getPressure(), paint);
paint.setColor(Color.parseColor(BOLD_RED));
RectF oval = new RectF();
oval.bottom = texture.getHeight() / 2.0f;
oval.top = 0;
oval.left = 0;
oval.right = 2 * (texture.getWidth() / 4.0f);
float orientation = ((event.getOrientation() * RAD) + 90) % 360;
canvas.drawArc(oval, orientation, 5.0f, true, paint);
paint.setColor(GRASS_GREEN);
int[] txtLoc = new int[2];
texture.getLocationOnScreen(txtLoc);
canvas.drawCircle(event.getRawX()- txtLoc[0], event.getRawY() - txtLoc[1], 100 * event.getPressure(), paint);
texture.unlockCanvasAndPost(canvas);
}
}

Просмотреть файл

@ -0,0 +1,37 @@
<!--
~
~ Copyright (c) Microsoft Corporation. All rights reserved.
~ Licensed under the MIT License.
~
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

Просмотреть файл

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~ Copyright (c) Microsoft Corporation. All rights reserved.
~ Licensed under the MIT License.
~
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>

Просмотреть файл

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~ Copyright (c) Microsoft Corporation. All rights reserved.
~ Licensed under the MIT License.
~
-->
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextureView
android:id="@+id/txtView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@+id/txtText"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0" />
<TextView
android:id="@+id/txtText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="device"
android:textAlignment="viewStart"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginStart="20dp"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.51" />
<TextView
android:id="@+id/txtAction"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="action"
android:textAlignment="viewStart"
android:layout_marginStart="20dp"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/txtText" />
<TextView
android:id="@+id/txtPreasure"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="pressure"
android:textAlignment="viewStart"
android:layout_marginStart="20dp"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/txtAction" />
<TextView
android:id="@+id/txtOrientation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="orientation"
android:layout_marginStart="20dp"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/txtPreasure" />
<TextView
android:id="@+id/txtButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button state"
android:textAlignment="viewStart"
android:layout_marginStart="20dp"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/txtOrientation" />
<TextView
android:id="@+id/txtCoords"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="coordinates"
android:textAlignment="viewStart"
android:layout_marginStart="20dp"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/txtButton" />
<TextView
android:id="@+id/txtTilt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="tilt"
android:textAlignment="viewStart"
android:layout_marginStart="20dp"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/txtCoords" />
</androidx.constraintlayout.widget.ConstraintLayout>

Просмотреть файл

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~ Copyright (c) Microsoft Corporation. All rights reserved.
~ Licensed under the MIT License.
~
-->
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Просмотреть файл

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~ Copyright (c) Microsoft Corporation. All rights reserved.
~ Licensed under the MIT License.
~
-->
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Двоичные данные
PenEvents/src/main/res/mipmap-hdpi/ic_launcher.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 3.5 KiB

Двоичные данные
PenEvents/src/main/res/mipmap-hdpi/ic_launcher_round.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 5.2 KiB

Двоичные данные
PenEvents/src/main/res/mipmap-mdpi/ic_launcher.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 2.6 KiB

Двоичные данные
PenEvents/src/main/res/mipmap-mdpi/ic_launcher_round.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 3.3 KiB

Двоичные данные
PenEvents/src/main/res/mipmap-xhdpi/ic_launcher.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 4.8 KiB

Двоичные данные
PenEvents/src/main/res/mipmap-xhdpi/ic_launcher_round.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 7.3 KiB

Двоичные данные
PenEvents/src/main/res/mipmap-xxhdpi/ic_launcher.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 7.7 KiB

Двоичные данные
PenEvents/src/main/res/mipmap-xxhdpi/ic_launcher_round.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 12 KiB

Двоичные данные
PenEvents/src/main/res/mipmap-xxxhdpi/ic_launcher.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 10 KiB

Двоичные данные
PenEvents/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 16 KiB

Просмотреть файл

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~ Copyright (c) Microsoft Corporation. All rights reserved.
~ Licensed under the MIT License.
~
-->
<resources>
<color name="colorPrimary">#6200EE</color>
<color name="colorPrimaryDark">#3700B3</color>
<color name="colorAccent">#03DAC5</color>
</resources>

Просмотреть файл

@ -0,0 +1,25 @@
<!--
~
~ Copyright (c) Microsoft Corporation. All rights reserved.
~ Licensed under the MIT License.
~
-->
<resources>
<string name="app_name">PenEvents</string>
<string name="ActionButtonRelease">Action : Button Release</string>
<string name="ActionButtonPress">Action : Button Press</string>
<string name="ActionHoverMove">Action : Hover Move</string>
<string name="ActionHoverExit">Action : Hover Exit</string>
<string name="ActionHoverEnter">Action : Hover Enter</string>
<string name="ActionOutside">Action : Outside</string>
<string name="ActionCancel">Action : Cancel</string>
<string name="ActionUp">Action : Up</string>
<string name="ActionMove">Action : Move</string>
<string name="ActionDown">Action : Down</string>
<string name="Pressure">Pressure : </string>
<string name="Orientation">Orientation : </string>
<string name="ButtonState">Button State : </string>
<string name="Location">"Location : "</string>
<string name="Tilt">"Tilt : "</string>
</resources>

Просмотреть файл

@ -0,0 +1,18 @@
<!--
~
~ Copyright (c) Microsoft Corporation. All rights reserved.
~ Licensed under the MIT License.
~
-->
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>

Просмотреть файл

@ -0,0 +1,24 @@
/*
*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*
*/
package om.microsoft.device.display.samples;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
}

7
gradle/wrapper/gradle-wrapper.properties поставляемый
Просмотреть файл

@ -1,3 +1,10 @@
#
#
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
#
#
#Wed Apr 08 16:25:58 EEST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists

Просмотреть файл

@ -7,3 +7,4 @@
include ':DualView', ':ExtendCanvas', ':MasterDetail', ':TwoPage', ':CompanionPane', ':IntentToSecondScreen', ':DragAndDrop', ':MultipleInstances', ':CompanionPaneLevel2', ':OrientationAndSpanning'
rootProject.name='DuoSDKSampleApps'
include ':PenEvents'