Android Datepickerdialog在不同机型上时间上下限不同

通过设置整个App的Theme可以设置统一Datepickerdialog的时间上下限。

修改应用主题

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" 
    android:theme="@style/AppTheme">
    <activity
        android:name=".XXActivity"
        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>

修改 styles.xml

<style name="CustomTheme" parent="android:Theme.Light">
    <item name="android:endYear">2999</item>
    <item name="android:startYear">1000</item>
</style>


你可能感兴趣的:(android疑难杂症)