Thomas Harpointner ♘

Founder & CEO at AIS Media

Thomas Harpointner began their career in 1990 as President of United Data Source, LLC, a premier provider of investor data to the top U.S. stock brokerage firms. In 1994, they moved to CTG as Vice President. In 1997, they founded and became the CEO of AIS Media, Inc., where they set the strategic direction and advised leading brands, companies, and organizations on digital marketing strategy development, execution, and management. Thomas also shared their digital marketing insights with the press and news media and spoke publicly on the latest digital trends.

package com.example.harsh.sahayak1.activity;

import android.app.Activity;

import android.content.Intent;

import android.os.Bundle;

import android.os.Handler;

import com.example.harsh.sahayak1.R;

public class SplashActivity extends Activity {

/** Duration of wait **/

private final int SPLASH_DISPLAY_LENGTH = 1000;

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle icicle) {

super.onCreate(icicle);

setContentView(R.layout.activity_splash);

/* New Handler to start the Menu-Activity

* and close this Splash-Screen after some seconds.*/

new Handler().postDelayed(new Runnable(){

@Override

public void run() {

/* Create an Intent that will start the Menu-Activity. */

Intent mainIntent = new Intent(SplashActivity.this,LoginActivity.class);

SplashActivity.this.startActivity(mainIntent);

SplashActivity.this.finish();

}

}, SPLASH_DISPLAY_LENGTH);

}

}

Links

Timeline

  • Founder & CEO

    June, 1997 - present