我有一个非常基本的pqctice应用程序使用CalendarView。我想要一个toast来显示与当前调用日期不同的日期。主要活动显示正常,视图有效,但吐司不会在任何时候显示。我错过了什么?
我的主要活动代码:
public class MainActivity extends AppCompatActivity implements OnDateChangeListener {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
base = (CalendarView) findViewById(R.id.calendarView);
date = base.getDate();
base.setOnDateChangeListener(new OnDateChangeListener() {
@Override
public void onSelectedDayChange(CalendarView view, int year, int month, int dayOfMonth) {
if(base.getDate() != date) {
date = base.getDate();
Toast.makeText(view.getContext(), month + "/" + dayOfMonth + "/" + year, Toast.LENGTH_LONG).show();
}
}
});
}
XML:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.practice.andrea.whysoobsessedwithcalendars.MainActivity">
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.practice.andrea.whysoobsessedwithcalendars.MainActivity"
>
<CalendarView
android:layout_width="250dp"
android:layout_height="250dp"
android:id="@+id/calendarView"
android:layout_centerVertical="true"
android:layout_alignRight="@+id/textView"
android:layout_alignEnd="@+id/textView"/>
</FrameLayout>
</RelativeLayout>
再次应该是非常基本的东西。我不知道为什么它不起作用。有什么想法吗?
答案 0 :(得分:0)
你的吐司没有问题。我尝试了你的代码,问题就是阻止。它永远不会被执行。如果你评论if块那么你的toast就会运行。只需更改与日期变化相关的逻辑。