我想将我的日期 YYYY/MM/DD 格式化为更友好的模式。
我使用安卓数据绑定。
我预计产出应为:2006年8月22日,星期二。 我当前从 Json 输入的是"2018-09-27"(模型中的字符串数据(
我的代码:
public class DateUtils {
SimpleDateFormat fromServer = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat myFormat = new SimpleDateFormat("dddd, dd MMMM yyyy");
public String getDateToFromat (String reciveDate) {
String newFormatString = myFormat.format(fromServer.parse(reciveDate));
return newFormatString;
};
}
我的布局:
<layout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data class ="CurrencyBindingDetailItem">
<import type="com.example.htw.currencyconverter.utils.DateUtils"/>
<import type="android.view.View" />
<variable name="currencyItemDetailDate" type="com.example.htw.currencyconverter.model.CurrencyDate"/>
<variable name="currencyBindingItemDetail" type="com.example.htw.currencyconverter.model.CurrencyBinding"/>
<variable name="callback" type="com.example.htw.currencyconverter.callback.ClickCallback"/>
</data>
<TextView
android:textSize="28dp"
android:text="@{DateUtils.getDateToFromat(currencyItemDetailDate.date)}"
android:textColor="@color/primary_text"
android:id="@+id/date_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" />
我确实有错误:
Found data binding errors.
****/ data binding error ****msg:**cannot find method getDateToFromat**(java.lang.String) in class com.example.htw.currencyconverter.utils.DateUtils
我做了清理,重新启动和重建。
为什么不创建一个数据绑定适配器,以便您的 xml 保持更清晰?由于来自服务器的日期是字符串格式,适配器将如下所示:
@BindingAdapter("bindServerDate")
public static void bindServerDate(@NonNull TextView textView, String date) {
/*Parse string data and set it in another format for your textView*/
}
它的用法:
在您的视图中模型创建ObservableField<String> serverDate
并从响应中设置值,在 xml setapp:bindServerDate="@{viewModel.serverDate}"
中。不要忘记添加viewModel
variable
并从activity/fragment
进行设置
你需要两个DateFormat
对象。一个用于格式化从服务器收到的字符串,另一个用于格式化所需的格式。
SimpleDateFormat fromServer = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat myFormat = new SimpleDateFormat("dddd, dd MMMM yyyy");
String inputDateStr="2018-09-27";
Date date = fromServer.parse(inputDateStr);
String outputDateStr =myFormat.format(date);
@BindingAdapter("formatDate")
fun TextView.setDate(order_date: String) {
var outputDate: String? = null
try {
val curFormater = SimpleDateFormat("yyyy-MM-dd'T'hh:mm:ss")
val postFormater = SimpleDateFormat("MMM dd, yyyy")
val dateObj = curFormater.parse(order_date)
outputDate = postFormater.format(dateObj)
this.setText(outputDate)
} catch (e: ParseException) {
e.printStackTrace()
}
}