如何在自定义适配器中更改我的日期格式?

时间:2016-06-16 15:26:52

标签: android date listview android-adapter date-format

我认为问题出现在我的自定义适配器中,当我设置了文本日期页

我的格式是2016年6月15日14:38:00 CEST 2016

我想要2016年6月15日

public class MyAdapter extends ArrayAdapter <Page> {

    Context context;
    int ressource;
    TextView tvTitreList;
    TextView tvDateList;
    TextView tvTagList;
    Page page ;
public MyAdapter(Context context,  ArrayList <Page> data ) {
        super(context, 0, data);
    }
    public View getView(int position, View convertView, ViewGroup parent) {
        if (convertView == null) {
            convertView = LayoutInflater.from(getContext()).inflate(R.layout.activity_list_perso, parent, false);
        }
        tvTitreList = (TextView) convertView.findViewById(R.id.tvTitre);
        tvDateList = (TextView) convertView.findViewById(R.id.tvDate);
        tvTagList  = (TextView) convertView.findViewById(R.id.tvTag);

我的班级MyAdapter的这一部分

        SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
        tvTitreList.setText(getItem(position).titrePage);
        tvDateList.setText(getItem(position).datePage.toString()); // <==dateFormat? How I put in ?
        tvTagList.setText(getItem(position).texteTag); 

1 个答案:

答案 0 :(得分:1)

使用SimpleDateFormat格式化日期:

SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
String formattedDate = dateFormat.format(datePage);