在我的应用中,我想只获得当前月份(不需要年复一天)。例。这个月是一月。显示db中与1月相关的列表视图数据。所有12个月。用户也可以从对话框中选择任意月份。我还在对话框中列出了几个月来选择用户想要的月份。
问题
1。要获取当前月份,然后从db填充数据(例如,当前月份是1月,然后从db填充1月数据,如果当前月份是4月,则从数据填充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();
}
}
谢谢,
答案 0 :(得分:6)
回答如何知道当前月份?是
DateFormat dateFormat = new SimpleDateFormat("MM");
Date date = new Date();
Log.d("Month",dateFormat.format(date));
使用上述功能,您可以使用Date类
获取当前日期时间和
回答如何填充与当月相关的数据?
编写一个SQL SELECT查询,从月份等于上述月份的表中选择所需的所有数据。