2016-09-19 11 views
0

私は非常に基本的なpqcticeアプリケーションでCalendarViewを操作しています。私は、現在の日付とは異なる日付が呼び出された日付を表示するために乾杯したいと思います。メインアクティビティは正常に表示され、ビューは機能しますが、トーストは表示されません。私は何が欠けていますか?自分のトーストが自分のエミュレータに表示されないのはなぜですか?

マイMainActivityコード:

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> 

再び本当に基本的なものでなければなりません。なぜそれが動作していないのか分かりません。何か案は?あなたのtoast.Iに問題がない

+0

私はこれ試してみた: 'Toast.makeText(MainActivity.this、月+ "/" + DAYOFMONTH + "/" +年、Toast.LENGTH_LONG).SHOW();' – Lino

答えて

0

はあなたのコードを試してみましたが、ブロックは、あなたのトーストは、日付の変化に関連するロジックを変更runs.Just場合は、コメントexecuted.If block.Itが取得することはありません場合、問題があります。

関連する問題