Created
May 6, 2015 22:42
-
-
Save vexdev/ce3cb7f3813ec4c1ee6f to your computer and use it in GitHub Desktop.
Example modified from AOSP of an Activity to be Unit Tested.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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 = getIntentForNextActivity(); | |
startActivity(intent); | |
finish(); | |
} | |
}); | |
} | |
protected Intent getIntentForNextActivity() { | |
return new Intent(LaunchActivity.this, NextActivity.class); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment