Skip to content

Instantly share code, notes, and snippets.

@kureikei
Created October 15, 2014 10:24
Show Gist options
  • Save kureikei/ed70a1299997876fe966 to your computer and use it in GitHub Desktop.
Save kureikei/ed70a1299997876fe966 to your computer and use it in GitHub Desktop.
public class PronamaChanCalendarActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
RelativeLayout layout = new RelativeLayout(this);
setContentView(layout);
addContentView(new CalendarView(this),
new RelativeLayout.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment