Thread: Likebook Alita
View Single Post
Old 08-13-2020, 09:10 AM   #273
georgelaza
Junior Member
georgelaza began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Aug 2020
Device: Likebook Mimas
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.
georgelaza is offline   Reply With Quote