Skip to content

Commit

Permalink
DatePickerを使ってカレンダーから日付を選択する
Browse files Browse the repository at this point in the history
  • Loading branch information
katsuyax committed Mar 2, 2011
1 parent 44db479 commit fdc145e
Show file tree
Hide file tree
Showing 11 changed files with 180 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CalendarDatePicker/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="output" path="bin"/>
</classpath>
33 changes: 33 additions & 0 deletions CalendarDatePicker/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>CalendarDatePicker</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
18 changes: 18 additions & 0 deletions CalendarDatePicker/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.jpn.techbooster.sample.calendardatepicker"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="11" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>
</manifest>
11 changes: 11 additions & 0 deletions CalendarDatePicker/default.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "build.properties", and override values to adapt the script to your
# project structure.

# Project target.
target=android-11
36 changes: 36 additions & 0 deletions CalendarDatePicker/proguard.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*

-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class * extends android.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.android.vending.licensing.ILicensingService

-keepclasseswithmembernames class * {
native <methods>;
}

-keepclasseswithmembernames class * {
public <init>(android.content.Context, android.util.AttributeSet);
}

-keepclasseswithmembernames class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}

-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}

-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
Binary file added CalendarDatePicker/res/drawable-hdpi/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added CalendarDatePicker/res/drawable-ldpi/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added CalendarDatePicker/res/drawable-mdpi/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions CalendarDatePicker/res/layout/main.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<DatePicker android:id="@+id/datePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</DatePicker>
<ToggleButton android:id="@+id/buttonCalnedar"
android:textOn="Calendar"
android:textOff="Calendar"
android:checked="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ToggleButton>
<ToggleButton android:id="@+id/buttonSpinners"
android:textOn="Spinners"
android:textOff="Spinners"
android:checked="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ToggleButton>
</LinearLayout>
4 changes: 4 additions & 0 deletions CalendarDatePicker/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">CalendarDatePicker</string>
</resources>
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package org.jpn.techbooster.sample.calendardatepicker;

import java.util.Date;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.DatePicker;
import android.widget.ToggleButton;

public class MainActivity extends Activity implements OnClickListener {
DatePicker _datePicker;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

_datePicker = (DatePicker)findViewById(R.id.datePicker);
ToggleButton buttonCalender = (ToggleButton)findViewById(R.id.buttonCalnedar);
ToggleButton buttonSpinners = (ToggleButton)findViewById(R.id.buttonSpinners);
buttonCalender.setOnClickListener(this);
buttonSpinners.setOnClickListener(this);

// 2011/1/1 〜 2011/12/31に制限する(デフォルトは 1900/1/1 〜 2200/12/31)
Date minDate = new Date(111, 0, 1);
Date maxDate = new Date(111, 11, 31);
_datePicker.setMinDate(minDate.getTime());
_datePicker.setMaxDate(maxDate.getTime());
}

@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.buttonCalnedar:
_datePicker.setCalendarViewShown(((ToggleButton)v).isChecked());
break;
case R.id.buttonSpinners:
_datePicker.setSpinnersShown(((ToggleButton)v).isChecked());
break;
default:
break;
}
}
}

0 comments on commit fdc145e

Please sign in to comment.