What I'm trying to do is to rewrite the note taking app. I tried a simple invalidation like this:
-------------------
public class MainActivity extends AppCompatActivity {
public View viewforinv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onStart() {
super.onStart();
viewforinv=findViewById(R.id.forinv);
viewforinv.invalidate();
}
}
------------------
But the EPD does not start to write on the screen. Maybe I missed something, maybe it's completely wrong. I'm kind of new with Android and completely new with EPD-s.
I would appreciate any help, paid projects are not excluded.
|