我正在尝试将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识别。为什么会这样?