Skip to content

Instantly share code, notes, and snippets.

@kojiokb
Created October 12, 2014 16:30
Show Gist options
  • Save kojiokb/eaaebd79cb6de1263a23 to your computer and use it in GitHub Desktop.
Save kojiokb/eaaebd79cb6de1263a23 to your computer and use it in GitHub Desktop.
「プロ生ちゃん #カレンダープログラミング プチコンテスト 2014」
package com.example.calendar;
import android.app.Activity;
import android.os.Bundle;
import android.view.ViewGroup;
import android.widget.CalendarView;
import android.widget.RelativeLayout;
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