есть ли способ настроить DatePicker?Это мой Layout-код.
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical">
<DatePicker
android:id="@+id/ad_date_picker"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_margin="5dp"/>
<TimePicker
android:id="@+id/ad_time_picker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"/>
</LinearLayout>
</ScrollView>
В этом случае формат даты DatePicker будет MM-DD-YYYY, и я хотел бы, чтобы он был в формате DD-MM-YYYY, и если это также возможно, я бы хотел иметькороткое имя месяца вместо числа.
Я пытался найти, как это сделать, но безуспешно.
Спасибо,
Мур