Skip to content

Instantly share code, notes, and snippets.

@vexdev
Created May 6, 2015 22:37
Show Gist options
  • Save vexdev/7538080db88f68b04478 to your computer and use it in GitHub Desktop.
Save vexdev/7538080db88f68b04478 to your computer and use it in GitHub Desktop.
Example modified from AOSP of an Activity to be Unit Tested.
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.android.testingfun.lesson4;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import com.example.android.testingfun.R;
/**
* Launches NextActivity and passes a payload in the Bundle.
*/
public class LaunchActivity extends Activity {
/**
* The payload that is passed as Intent data to NextActivity.
*/
public final static String STRING_PAYLOAD = "Started from LaunchActivity";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_launch_next);
setupListeners();
}
private void setupListeners() {
Button launchNextButton = (Button) findViewById(R.id.launch_next_activity_button);
launchNextButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(LaunchActivity.this, NextActivity.class);
startActivity(intent);
finish();
}
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment