android.widget.CalendarView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.widget;
public class CalendarView
extends android.widget.FrameLayout
{
public static interface OnDateChangeListener
{
public abstract void onSelectedDayChange(android.widget.CalendarView view, int year, int month, int dayOfMonth);
}
public CalendarView(android.content.Context context) { super((android.content.Context)null,(android.util.AttributeSet)null,0); throw new RuntimeException("Stub!"); }
public CalendarView(android.content.Context context, android.util.AttributeSet attrs) { super((android.content.Context)null,(android.util.AttributeSet)null,0); throw new RuntimeException("Stub!"); }
public CalendarView(android.content.Context context, android.util.AttributeSet attrs, int defStyle) { super((android.content.Context)null,(android.util.AttributeSet)null,0); throw new RuntimeException("Stub!"); }
public void setShownWeekCount(int count) { throw new RuntimeException("Stub!"); }
public int getShownWeekCount() { throw new RuntimeException("Stub!"); }
public void setSelectedWeekBackgroundColor(int color) { throw new RuntimeException("Stub!"); }
public int getSelectedWeekBackgroundColor() { throw new RuntimeException("Stub!"); }
public void setFocusedMonthDateColor(int color) { throw new RuntimeException("Stub!"); }
public int getFocusedMonthDateColor() { throw new RuntimeException("Stub!"); }
public void setUnfocusedMonthDateColor(int color) { throw new RuntimeException("Stub!"); }
public int getUnfocusedMonthDateColor() { throw new RuntimeException("Stub!"); }
public void setWeekNumberColor(int color) { throw new RuntimeException("Stub!"); }
public int getWeekNumberColor() { throw new RuntimeException("Stub!"); }
public void setWeekSeparatorLineColor(int color) { throw new RuntimeException("Stub!"); }
public int getWeekSeparatorLineColor() { throw new RuntimeException("Stub!"); }
public void setSelectedDateVerticalBar(int resourceId) { throw new RuntimeException("Stub!"); }
public void setSelectedDateVerticalBar(android.graphics.drawable.Drawable drawable) { throw new RuntimeException("Stub!"); }
public android.graphics.drawable.Drawable getSelectedDateVerticalBar() { throw new RuntimeException("Stub!"); }
public void setWeekDayTextAppearance(int resourceId) { throw new RuntimeException("Stub!"); }
public int getWeekDayTextAppearance() { throw new RuntimeException("Stub!"); }
public void setDateTextAppearance(int resourceId) { throw new RuntimeException("Stub!"); }
public int getDateTextAppearance() { throw new RuntimeException("Stub!"); }
public void setEnabled(boolean enabled) { throw new RuntimeException("Stub!"); }
public boolean isEnabled() { throw new RuntimeException("Stub!"); }
protected void onConfigurationChanged(android.content.res.Configuration newConfig) { throw new RuntimeException("Stub!"); }
public void onInitializeAccessibilityEvent(android.view.accessibility.AccessibilityEvent event) { throw new RuntimeException("Stub!"); }
public void onInitializeAccessibilityNodeInfo(android.view.accessibility.AccessibilityNodeInfo info) { throw new RuntimeException("Stub!"); }
public long getMinDate() { throw new RuntimeException("Stub!"); }
public void setMinDate(long minDate) { throw new RuntimeException("Stub!"); }
public long getMaxDate() { throw new RuntimeException("Stub!"); }
public void setMaxDate(long maxDate) { throw new RuntimeException("Stub!"); }
public void setShowWeekNumber(boolean showWeekNumber) { throw new RuntimeException("Stub!"); }
public boolean getShowWeekNumber() { throw new RuntimeException("Stub!"); }
public int getFirstDayOfWeek() { throw new RuntimeException("Stub!"); }
public void setFirstDayOfWeek(int firstDayOfWeek) { throw new RuntimeException("Stub!"); }
public void setOnDateChangeListener(android.widget.CalendarView.OnDateChangeListener listener) { throw new RuntimeException("Stub!"); }
public long getDate() { throw new RuntimeException("Stub!"); }
public void setDate(long date) { throw new RuntimeException("Stub!"); }
public void setDate(long date, boolean animate, boolean center) { throw new RuntimeException("Stub!"); }
}