Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. MyClass instance = new MyClass(this);
  2.  
  3. public class MyClass {
  4. public Activity activity;
  5.  
  6. public MyClass(Activity _activity){
  7. this.activity = _activity;
  8. }
  9. }​
  10.  
  11. TableRow tr_head = new TableRow(this);
  12. tr_head.setId(10);
  13. tr_head.setBackgroundColor(Color.GRAY);
  14. tr_head.setLayoutParams(new LayoutParams(
  15. LayoutParams.FILL_PARENT,
  16. LayoutParams.WRAP_CONTENT));​
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement