Tuesday, May 14, 2019

Ch3 Hello help

private void initDisplayButton() {
    Button displayButton = (Button) findViewById(R.id.button);
    displayButton.setOnClickListener(new OnClickListener () {

        @Override        public void onClick(View arg0) {
            EditText editName = (EditText) findViewById(R.id.editText);

            TextView textDisplay = (TextView) findViewById(R.id.textView);
            String nameToDisplay = editName.getText().toString();
            textDisplay.setText("Hello " + nameToDisplay);
        }
    });
}

Tuesday, January 8, 2019

Week 1 Assignment

In the program language of your choice:
1) Display the number 1 - 10 on the screen.
2) Display the first 10 even integers on the screen, hint modulo %.
4) Calculate the pay for Sam who earns $15 and hour for the first 35 hours worked. He earns time and a half for all hours after 35. Display his pay on the screen for these cases:
A) A 0 hour week.
B) A 30 hour week.
C) A 40 hour week.

Wednesday, January 2, 2019

Chapter 2: Introduction to the Mobile Software Development Lifecycle

All,

In this class we will explore this Microsoft document and related info:
Introduction to the Mobile Software Development Lifecycle
Homework assignment: Prepare a table comparing the three major mobile platforms (iOS,Android, Windows Phone) in terms of the following:
- Market Share.
- Number of models available.
- Number of apps available.

Tuesday, January 1, 2019