提问人:Lets Explorer 提问时间:10/17/2018 更新时间:10/17/2018 访问量:65
如何在android中使用回收视图显示本地日期类型?
How to display local date type using recycle view in android?
问:
我正在使用 Threeten 时区将本地日期存储在 LocalDate 类型的列表中。
这是我的代码:
private List<LocalDate> getWeekDays() {
ZoneId z = ZoneId.of("Pacific/Auckland"); // Or ZoneId.of( "Africa/Tunis" )
LocalDate today = LocalDate.now( z ) ;
LocalDate localDate = today.with( org.threeten.bp.temporal.TemporalAdjusters.previousOrSame( DayOfWeek.SUNDAY ) ) ;
List< LocalDate > dates = new ArrayList<>( 7 ) ;
for( int i = 0 ; i < 7 ; i ++ ) {
localDate = localDate.plusDays( i ) ;
dates.add( localDate ) ;
}
return dates;
}
问题出在将列表数组传递到回收视图之后。我在将其提取到回收视图时遇到错误。
回收视图代码:
public void onBindViewHolder(@NonNull HoldViews holder, int position) {
holder.tx1.setText(WeekDays[position]);
String[] date = Dates.toArray(new String[0]);// Dates is list array of type LocalDate
holder.tx3.setText(date[position]);
}
如果虽然我转换为字符串数组。我收到以下错误“ java.lang.ArrayStoreException: source[0] of type org.threeten.bp.LocPlDate cannot be stored in the destination array of type java.lang.String[]”。请帮帮我。
答:
1赞
RScottCarson
10/17/2018
#1
与其在每次绑定新视图时将整个 Dates 数组转换为字符串数组,我建议直接使用给定的 .LocalDate
position
然后使用该方法将 转换为 String。LocalDate
toString()
public void onBindViewHolder(@NonNull HoldViews holder, int position) {
holder.tx1.setText(WeekDays[position]);
String dateString = dateList.get(position).toString() // I don't know what the variable name you used is
holder.tx3.setText(dateString);
}
评论
Dates
toArray()