我正在尝试将http://code.google.com/p/android-dateslider/中提供的日期浏览器用于我的android项目。但是我遇到了一些问题
这是一个名为datetimeslider.xml的布局文件
<?xml version="1.0" encoding="utf-8"?>
<com.googlecode.android.widgets.DateSlider.SliderContainer
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.googlecode.android.widgets.DateSlider"
android:id="@+id/dateSliderContainer"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.googlecode.android.widgets.DateSlider.ScrollLayout
style="@style/Scroller"
app:labelerClass="com.googlecode.android.widgets.DateSlider.labeler.MonthYearLabeler"
app:labelerFormat="%tb %tY"
app:childWidth="180dp"/>
<com.googlecode.android.widgets.DateSlider.ScrollLayout
style="@style/Scroller"
app:labelerClass="com.googlecode.android.widgets.DateSlider.labeler.DayDateLabeler"
app:labelerFormat="%td %ta"
app:childWidth="120dp"/>
<com.googlecode.android.widgets.DateSlider.ScrollLayout
style="@style/Scroller"
app:labelerClass="com.googlecode.android.widgets.DateSlider.labeler.TimeLabeler"
app:labelerFormat="%tR"
app:childWidth="80dp"/>
<include layout="@layout/dialogbuttons"/>
</com.googlecode.android.widgets.DateSlider.SliderContainer>
但是,它无法识别
中可用的命名空间xmlns:app="http://schemas.android.com/apk/res/com.googlecode.android.widgets.DateSlider
所有属性 喜欢
app:labelerFormat="%tb %tY"
app:childWidth="180dp"
它们不被android识别。为什么会这样?