Android 获取当前月份

Android Get current month

在我的应用程序中,我只想获取当前月份(不需要年份和日期)。例子。这个月是一月。显示来自 db 的与 1 月相关的列表视图数据。对于所有 12 个月。用户也可以从对话框中选择任何月份。我还在对话框中列出了月份,以供用户选择月份。

问题

1. 获取当前月份然后从数据库填充数据(例如当前月份是一月然后从数据库填充一月份数据,如果当前月份是四月然后填充每个月的 data 中的 4 月数据。

问题

1.如何知道当前月份?

2.如何填充与当月相关的数据?

当前代码:

public class MonthlyFragment extends Fragment {
    private int monthField;

    public MonthlyFragment() {

    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_monthly, container, false);
        //    String currentDateString = DateFormat.getDateInstance().format(new Date());

        Button button = (Button) rootView.findViewById(R.id.button);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                showAlertDialog1();
            }
        });

        return rootView;
    }

    private void showAlertDialog1() {
        final String[] Selected = new String[]{"January", "February", "March", "April",
                "May", "June", "July", "Augest", "September", "October", "November", "December"};

        new AlertDialog.Builder(getActivity()).setTitle("Pick the month")
                .setItems(Selected, new DialogInterface.OnClickListener() {

                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        if (Selected[which] == "January") {
                            // Show the 
                        }


                        Toast.makeText(getActivity(), Selected[which], Toast.LENGTH_SHORT)
                                .show();


                    }
                }).setNeutralButton("Close dialog", null).show();
    }


}

谢谢,

如何知道当前月份?的答案是

DateFormat dateFormat = new SimpleDateFormat("MM");
Date date = new Date();
Log.d("Month",dateFormat.format(date));

使用上面的函数,您可以使用 Date class

获取当前日期时间

如何填充与当月相关的数据?的答案是

写一个 SQL SELECT 查询 select 您想要的 table 中的所有数据,其中月份等于上面获得的月份..