OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:carouselview
(Results
1 - 7
of
7
) sorted by null
/frameworks/ex/carousel/test/src/com/android/carouseltest/
MyCarouselView.java
23
import com.android.ex.carousel.
CarouselView
;
24
import com.android.ex.carousel.
CarouselView
.Info;
26
public class MyCarouselView extends
CarouselView
{
MusicDemoActivity.java
19
import com.android.ex.carousel.
CarouselView
;
36
private
CarouselView
mView;
86
mView = (
CarouselView
) findViewById(R.id.carousel);
CarouselTestActivity.java
19
import com.android.ex.carousel.
CarouselView
;
48
private
CarouselView
mView;
146
mView = (
CarouselView
) findViewById(R.id.carousel);
164
mView.setDragModel(
CarouselView
.DRAG_MODEL_PLANE);
/frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselViewHelper.java
18
* CarouselViewHelper wraps all of the threading and event handling of the
CarouselView
,
39
private
CarouselView
mCarouselView;
72
public void setCarouselView(
CarouselView
carouselView
) {
73
mCarouselView =
carouselView
;
77
public CarouselViewHelper(Context context,
CarouselView
carouselView
) {
79
setCarouselView(
carouselView
);
302
protected
CarouselView
getCarouselView() {
CarouselController.java
20
import com.android.ex.carousel.
CarouselView
.DetailAlignment;
455
* when {@link
CarouselView
#setTextureForItem(int, Bitmap)} is called. It is shared by all
469
* {@link
CarouselView
#setBackgroundBitmap(Bitmap)}, then this call has no effect.
558
* {@link
CarouselView
#setForceBlendCardsWithZ(boolean)}
629
* {@link
CarouselView
.InterpolationMode#LINEAR}
630
* {@link
CarouselView
.InterpolationMode#DECELERATE_QUADRATIC}
631
* {@link
CarouselView
.InterpolationMode#ACCELERATE_DECELERATE_CUBIC}
654
* {@link
CarouselView
#DRAG_MODEL_SCREEN_DELTA}
655
* {@link
CarouselView
#DRAG_MODEL_PLANE}
656
* {@link
CarouselView
#DRAG_MODEL_CYLINDER_INSIDE
[
all
...]
CarouselView.java
40
public abstract class
CarouselView
extends RSSurfaceView {
42
private static final String TAG = "
CarouselView
";
118
public
CarouselView
(Context context) {
122
public
CarouselView
(Context context, CarouselController controller) {
129
public
CarouselView
(Context context, AttributeSet attrs) {
133
public
CarouselView
(Context context, AttributeSet attrs, CarouselController controller) {
387
* when {@link
CarouselView
#setTextureForItem(int, Bitmap)} is called. It is shared by all
398
* {@link
CarouselView
#setBackgroundBitmap(Bitmap)}, then this call has no effect.
411
* null, this overrides {@link
CarouselView
#setBackgroundColor(Float4)}.
444
* {@link
CarouselView
#setForceBlendCardsWithZ(boolean)
[
all
...]
carousel.rs
88
// Interpolation modes ** THIS LIST MUST MATCH THOSE IN
CarouselView
.java ***
95
// Detail texture alignments ** THIS LIST MUST MATCH THOSE IN
CarouselView
.java ***
[
all
...]
Completed in 2801 milliseconds