Harry Sohie has been working in the tech industry since 2016. Harry began their career as a Developer for Newaya Recycling. In 2018, they co-founded WholeCell.io, a web-based inventory platform specifically designed to solve the unique challenges of the used cell phone wholesale industry, and took on the role of Co-Founder and Developer.
package com.example.dell.myapplication;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button btn1=(Button)findViewById(R.id.button);
btn1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent=new Intent(MainActivity.this,Main2Activity.class);
startActivity(intent);
}
});
}
}
Sign up to view 0 direct reports
Get started
This person is not in any teams