Created
October 12, 2014 16:30
-
-
Save kojiokb/eaaebd79cb6de1263a23 to your computer and use it in GitHub Desktop.
「プロ生ちゃん #カレンダープログラミング プチコンテスト 2014」
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
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