Guest User

Untitled

a guest
Jan 23rd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. @OmegaActivity
  2. public class ExampleActivity extends Activity {
  3.  
  4. @OmegaExtra("key")
  5. String text
  6.  
  7. @Override
  8. protected void onCreate(Bundle savedInstanceState) {
  9. super.onCreate(savedInstanceState);
  10. ...
  11. AppOmegaIntentBuilder.inject(this);
  12. TextView textView = (TextView) findViewById(R.id.textview);
  13. textView.setText(text);
  14. }
  15.  
  16. }
  17.  
  18. AppOmegaIntentBuilder.from(this)
  19. .appActivity()
  20. .exampleActivity()
  21. .key("Your text here")
  22. .createIntentHandler()
  23. .startActivity();
Add Comment
Please, Sign In to add comment