2017-07-03 18:26:38 +00:00
|
|
|
package com.codigoparallevar.minicards;
|
|
|
|
|
2017-07-09 14:46:47 +00:00
|
|
|
import android.support.design.widget.FloatingActionButton;
|
|
|
|
import android.support.design.widget.Snackbar;
|
2017-07-08 18:52:16 +00:00
|
|
|
import android.support.v7.app.ActionBar;
|
2017-07-03 18:26:38 +00:00
|
|
|
import android.support.v7.app.AppCompatActivity;
|
|
|
|
import android.os.Bundle;
|
2017-07-03 21:55:32 +00:00
|
|
|
import android.view.MotionEvent;
|
2017-07-09 14:46:47 +00:00
|
|
|
import android.view.View;
|
2017-07-03 18:26:38 +00:00
|
|
|
|
|
|
|
public class TestActivity extends AppCompatActivity {
|
|
|
|
|
2017-07-03 22:53:12 +00:00
|
|
|
PartCanvasView partCanvasView;
|
2017-07-03 21:55:32 +00:00
|
|
|
|
2017-07-03 18:26:38 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
2017-07-08 18:52:16 +00:00
|
|
|
// Hide action bar
|
|
|
|
ActionBar actionBar = getSupportActionBar();
|
|
|
|
if (actionBar != null) {
|
|
|
|
actionBar.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use controled canvas
|
2017-07-09 14:46:47 +00:00
|
|
|
setContentView(R.layout.activity_test);
|
|
|
|
|
|
|
|
partCanvasView = (PartCanvasView) findViewById(R.id.canvasView);
|
|
|
|
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
|
|
|
|
fab.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
|
|
|
|
.setAction("Action", null).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-07-03 18:26:38 +00:00
|
|
|
}
|
2017-07-03 21:55:32 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onTouchEvent(MotionEvent event) {
|
2017-07-03 22:53:12 +00:00
|
|
|
return partCanvasView.onTouchEvent(event);
|
2017-07-03 21:55:32 +00:00
|
|
|
}
|
2017-07-03 18:26:38 +00:00
|
|
|
}
|