如何在安卓中使用回收视图显示本地日期类型?



我正在使用三十时区将本地日期存储在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: org.threeten.bp.LocPlDate类型的source[0]无法存储在java.lang.String[]类型的目标数组中"。请帮助我。

与其在每次绑定新视图时将整个日期数组转换为字符串数组,我建议直接使用给定的position直接拉取LocalDate对象。

然后使用toString()方法将LocalDate转换为字符串。

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);
}

相关内容

  • 没有找到相关文章

最新更新