在Android中的CalendarView中显示所选日期

时间:2014-01-06 10:19:21

标签: android mobile calendarview

我有三个观看项目。 1.按钮2. CalendarView 3. TextView 当我选择日期并单击按钮时,我试图在TextView上显示所选日期。单击按钮时,日期应仅出现在TextView中。这是我的代码:

CalendarView cal = null;
TextView text = null;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    cal = (CalendarView) findViewById(R.id.calendarView);
    Button but = (Button) findViewById(R.id.button);
}

void Touchy(View view){
    text = (TextView) findViewById(R.id.textView);
    cal.setOnDateChangeListener(new CalendarView.OnDateChangeListener() {
        @Override
        public void onSelectedDayChange(CalendarView view, int year, int month, int dayOfMonth) {
            text.setText("");
            int d = dayOfMonth;
            int m = month;
            int y = year;
            String c = d+"-"+m+"-"+y;
            text.append(c);
        }
    });
}

XML

<Button
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="+"
    android:id="@+id/button"
    android:layout_gravity="right|top"
    android:onClick="Touchy"/>

然而,当我点击按钮时应用程序停止。什么可能是错的?

1 个答案:

答案 0 :(得分:0)

您发布的方法的签名是错误的。它应该是

public void Touchy(View view) {}