OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SimpleMonthView
(Results
1 - 6
of
6
) sorted by null
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthAdapter.java
22
* An adapter for a list of {@link
SimpleMonthView
} items.
32
final MonthView monthView = new
SimpleMonthView
(context);
SimpleMonthView.java
24
public class
SimpleMonthView
extends MonthView {
26
public
SimpleMonthView
(Context context) {
/frameworks/base/core/java/android/widget/
DayPickerPagerAdapter.java
33
import android.widget.
SimpleMonthView
.OnDayClickListener;
36
* An adapter for a list of {@link android.widget.
SimpleMonthView
} items.
101
final
SimpleMonthView
monthView = mItems.valueAt(i).calendar;
216
final
SimpleMonthView
v = (
SimpleMonthView
) itemView.findViewById(mCalendarViewId);
287
final
SimpleMonthView
v = mItems.get(position).calendar;
294
SimpleMonthView
getView(Object object) {
304
public void onDayClick(
SimpleMonthView
view, Calendar day) {
318
public final
SimpleMonthView
calendar;
320
public ViewHolder(int position, View container,
SimpleMonthView
calendar)
[
all
...]
DayPickerViewPager.java
152
final
SimpleMonthView
current = adapter.getView(getCurrent());
SimpleMonthView.java
60
class
SimpleMonthView
extends View {
146
public
SimpleMonthView
(Context context) {
150
public
SimpleMonthView
(Context context, AttributeSet attrs) {
154
public
SimpleMonthView
(Context context, AttributeSet attrs, int defStyleAttr) {
158
public
SimpleMonthView
(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
384
// We need to handle focus change within the
SimpleMonthView
because we are simulating
387
//
SimpleMonthView
, skipping over other SimpleMonthViews in the parent ViewPager
[
all
...]
DayPickerView.java
228
final
SimpleMonthView
monthView = (
SimpleMonthView
) mViewPager.getChildAt(0);
Completed in 1668 milliseconds