Может кто-нибудь использовать просмотр текста с Android 3D Карусель? - PullRequest
0 голосов
/ 18 апреля 2011

У нас есть Android 3D Карусель здесь: http://www.codeproject.com/KB/android/androcarousel.aspx

Там моя проблема в том, что: я хочу сделать текстовую метку между изображением и отражением?

как я могу это сделать?

Помогите мне, пожалуйста

1 Ответ

1 голос
/ 20 апреля 2011

Я нашел ответ: используйте 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;
}

}

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...