Hello all, before I start please forgive me for asking maybe a very stupid question, but I'm more of a Web developer than programer.
I have made my own watch face and intend to add some basic text like:
"it's now:" & "today is"
And I'm not entirely sure how to do it. I think you do it like so:
import android.widget.TextView;
?* ?* ?*TextView tv = new TextView(this);
?*?*?*?*?*?*?*?*?*?*?* tv.setText(It's Now:);
?*?*?*?*?*?*?*?*?*?*?* setContentView(tv);
?*?*?*?*?*?*?*?*?*?*?*
Clock mumbo-jumbo ();
TextView tv = new TextView(this);
?*?*?*?*?*?*?*?*?*?*?* tv.setText(Today Is:);
?*?*?*?*?*?*?*?*?*?*?* setContentView(tv);
Date mumbo-jumbo ();
Can anyone tell me of im horribly wrong or not? Thank you.
I have made my own watch face and intend to add some basic text like:
"it's now:" & "today is"
And I'm not entirely sure how to do it. I think you do it like so:
import android.widget.TextView;
?* ?* ?*TextView tv = new TextView(this);
?*?*?*?*?*?*?*?*?*?*?* tv.setText(It's Now:);
?*?*?*?*?*?*?*?*?*?*?* setContentView(tv);
?*?*?*?*?*?*?*?*?*?*?*
Clock mumbo-jumbo ();
TextView tv = new TextView(this);
?*?*?*?*?*?*?*?*?*?*?* tv.setText(Today Is:);
?*?*?*?*?*?*?*?*?*?*?* setContentView(tv);
Date mumbo-jumbo ();
Can anyone tell me of im horribly wrong or not? Thank you.