我使用CalendarView创建了一个活动。向上和向下滚动时,有时一条灰色水平线消失。请参阅下图,了解我正在谈论的台词。是什么原因造成的?
view_calendar.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<CalendarView
android:id="@+id/calendar"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
ViewCalendar.java
public class ViewCalendar extends Activity {
@Override
public void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.view_calendar);
}
}
答案 0 :(得分:0)
在你的“日历”中,一条消失的灰线显示你在那一排。在该消失的行中,一个块显示指向当前日期的灰色。就像阻止22
的“日历”一样。您可以在下面链接中提供的图像中看到。
http://www.edumobile.org/android/android-development/calenderview-example/
在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" >
<CalendarView
android:id="@+id/calendar"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>