diff --git a/app/src/main/java/edu/hzuapps/androidworks/homeworks/com1314080901131/COM1314080901131Activity.java b/app/src/main/java/edu/hzuapps/androidworks/homeworks/com1314080901131/COM1314080901131Activity.java new file mode 100644 index 00000000..20e5b76e --- /dev/null +++ b/app/src/main/java/edu/hzuapps/androidworks/homeworks/com1314080901131/COM1314080901131Activity.java @@ -0,0 +1,73 @@ +package com.example.ranine99.worldtimer; + +import android.content.Intent; +import android.os.Bundle; +import android.support.design.widget.FloatingActionButton; +import android.support.design.widget.Snackbar; +import android.support.v7.app.AppCompatActivity; +import android.support.v7.widget.Toolbar; +import android.view.View; +import android.view.Menu; +import android.view.MenuItem; +import android.widget.EditText; + +public class COM1314080901131Activity extends AppCompatActivity { + + public final static String EXTRA_MESSAGE = "com.hewq.myfirstapp.MESSAGE"; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_my); + Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); + setSupportActionBar(toolbar); + + 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(); + } + }); + } + + @Override + public boolean onCreateOptionsMenu(Menu menu) { + // Inflate the menu; this adds items to the action bar if it is present. + getMenuInflater().inflate(R.menu.menu_my, menu); + return true; + } + + @Override + public boolean onOptionsItemSelected(MenuItem item) { + // Handle action bar item clicks here. The action bar will + // automatically handle clicks on the Home/Up button, so long + // as you specify a parent activity in AndroidManifest.xml. + int id = item.getItemId(); + + //noinspection SimplifiableIfStatement + if (id == R.id.action_settings) { + return true; + } + + return super.onOptionsItemSelected(item); + } + + /** Called when the user clicks the Send button */ + public void sendMessage(View view) { + // Do something in response to button + Intent intent = new Intent(this, DisplayMessageActivity.class); + EditText editText = (EditText) findViewById(R.id.edit_message); + String message = editText.getText().toString(); + intent.putExtra(EXTRA_MESSAGE, message); + startActivity(intent); + } + + /** Called when the user clicks the Clock button*/ + public void showClock(View view){ + //Do something in response to button + Intent intent = new Intent(this,DisplayClockActivity.class); + startActivity(intent); + } +}