Bede Ashby has a wealth of experience in the consulting industry. Bede began their career in 1993 as a Consultant at Morgan and Banks. In 1996, they joined Momentum Consulting Group as Managing Director, where they were responsible for all aspects of day to day management and the development of three new brands under Momentum Holdings. Bede also held the role of Director at Momentum Consulting Group. In 2016, they became Director at Mint Consulting, and in 2017, they became Director at Jupl. In 2018, they joined Aura Consulting as Director, where they are working in conjunction with Halo Consulting to operate predominantly in the general recruitment space with a focus on temps and contractors outside of technology.
package com.example.dell.myapplication;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity {
EditText editText;
TextView textView;
Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = (EditText) findViewById(R.id.editText);
textView = (TextView) findViewById(R.id.textView);
button = (Button) findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String name = editText.getText().toString();
if(name.equals("")){
Toast.makeText(MainActivity.this, "Please enter your name", Toast.LENGTH_SHORT).show();
}else {
Intent intent = new Intent(MainActivity.this, Main2Activity.class);
intent.putExtra("name", name);
startActivity(intent);
}
}
});
}
}
Sign up to view 0 direct reports
Get started
This person is not in any teams