Evy Lundgren-Åkerlund

Evy Lundgren-Åkerlund has held various CEO positions since 2000. Evy was the CEO of Cartela AB from 2000 to 2007 and the CEO of Lund Life Science Incubator from 2008 to 2009. In 2009, they founded Xintela and currently serves as its CEO. Evy has extensive experience in biomedical research and development, and has previously held leading positions in both academia and industry.

package com.example.dell.myapplication;

import android.content.Context;

import android.content.Intent;

import android.support.v7.app.AppCompatActivity;

import android.os.Bundle;

import android.view.View;

import android.widget.Button;

import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

private static final String TOTAL_COUNT = "total_count";

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

showRandomNumber();

}

public void showRandomNumber() {

// Get the text view where the random number will be displayed

TextView randomView = (TextView)

findViewById(R.id.textview_random);

// Get the text view where the heading is displayed

TextView headingView = (TextView)

findViewById(R.id.textview_label);

// Get the count from the intent extras

int count = getIntent().getIntExtra(TOTAL_COUNT, 0);

// Generate the random number

RandomNumber random = new RandomNumber();

int randomInt = 0;

if (count>0) {

randomInt = random.getRandomNumber(count);

}

// Display the random number

randomView.setText(Integer.toString(randomInt));

// Substitute the max value into the string resource

// for the heading, and update the heading

headingView.setText(getString(R.string.random_heading, count));

}

public static Intent makeIntent(Context context, int count) {

Intent intent = new Intent(context, MainActivity.class);

intent.putExtra(TOTAL_COUNT, count);

return intent;

}

}

Links


Org chart

Sign up to view 9 direct reports

Get started