开发者

Can someone use text view with Android 3D Carousel?

开发者 https://www.devze.com 2023-02-26 06:03 出处:网络
We have开发者_JS百科 Android 3D Carousel here: http://www.codeproject.com/KB/android/androcarousel.aspx

We have开发者_JS百科 Android 3D Carousel here: http://www.codeproject.com/KB/android/androcarousel.aspx

There my problem is that: i want to make text label between the image and the reflection ?

how can i do it?

Help me please


I found the anwser: Use CarouselFrame

public class CarouselFrame extends FrameLayout implements Comparable<CarouselFrame> {

private int index;
private float currentAngle;
private float x;
private float y;
private float z;
private boolean drawn;

private ImageView image;
private TextView txt;

public CarouselFrame(Context context) {
    this(context, null, 0);
}   

public CarouselFrame(Context context, AttributeSet attrs) {
    this(context, attrs, 0);
}

public CarouselFrame(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    image = new ImageView(context);
    this.addView(image, new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
            ViewGroup.LayoutParams.WRAP_CONTENT));
    txt = new TextView(context);
    this.addView(txt, new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
            ViewGroup.LayoutParams.WRAP_CONTENT));
}

public void setImageBitmap(Bitmap img){
    image.setImageBitmap(img);
}

public void setText(String text){
    txt.setText(text);
}


public void setIndex(int index) {
    this.index = index;
}

public int getIndex() {
    return index;
}


public void setCurrentAngle(float currentAngle) {
    this.currentAngle = currentAngle;
}

public float getCurrentAngle() {
    return currentAngle;
}

public int compareTo(CarouselFrame another) {
    return (int)(another.z - this.z);
}

public void setX(float x) {
    this.x = x;
}

public float getX() {
    return x;
}

public void setY(float y) {
    this.y = y;
}

public float getY() {
    return y;
}

public void setZ(float z) {
    this.z = z;
}

public float getZ() {
    return z;
}

public void setDrawn(boolean drawn) {
    this.drawn = drawn;
}

public boolean isDrawn() {
    return drawn;
}

}

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号