Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7808025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T03:01:57+00:00 2026-06-02T03:01:57+00:00

I have a class called CoverFlowClass. I used to do this to create a

  • 0

I have a class called CoverFlowClass.
I used to do this to create a class,

CoverFlowClass coverFlow = new CoverFlowClass(this)
coverFlow.setAdapter(new ImageAdapter(this));

But now I want to use XML so I can do layouting. I create an XML code like this:

<id.co.ajsmsig.display.CoverFlowClass
    android:id="@+id/coverflow"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
/>

But when I create from the code like this :

CoverFlowClass coverFlow=  (CoverFlowClass) findViewById(R.id.coverflow);
coverFlow.setAdapter(new ImageAdapter(this));

My app force closed.
The error log in LogCat i found is :

04-18 07:46:34.804: E/AndroidRuntime(1847): at id.co.ajsmsig.display.CoverFlowMain.onCreate(CoverFlowMain.java:76).

And the line 76 is :

coverFlow.setAdapter(new ImageAdapter(this));

I think because the class is using a parameter in it constructor (= new CoverFlowClass(this)) while findViewById does not give any parameter. I still have no idea, how to make this work? Any idea is appreciated.

Thanks

P.s. Below is the CoverFlow class source code:


package id.co.ajsmsig.display;


import android.content.Context;
import android.graphics.Camera;
import android.graphics.Matrix;
import android.util.AttributeSet;
import android.view.View;
import android.view.animation.Transformation;
import android.widget.Gallery;
import android.widget.ImageView;

public class CoverFlowClass extends Gallery {

    /**
     * Graphics Camera used for transforming the matrix of ImageViews
     */
    private Camera mCamera = new Camera();

    /**
     * The maximum angle the Child ImageView will be rotated by
     */    
    private int mMaxRotationAngle = 60;

    /**
     * The maximum zoom on the centre Child
     */
    private int mMaxZoom = -120;

    /**
     * The Centre of the Coverflow 
     */   
    private int mCoveflowCenter;

    public CoverFlowClass(Context context) {
  super(context);
  this.setStaticTransformationsEnabled(true);
 }

    public CoverFlowClass(Context context, AttributeSet attrs) {
  super(context, attrs);
        this.setStaticTransformationsEnabled(true);
 }

    public CoverFlowClass(Context context, AttributeSet attrs, int defStyle) {
   super(context, attrs, defStyle);
   this.setStaticTransformationsEnabled(true);   
  }

    /**
     * Get the max rotational angle of the image
  * @return the mMaxRotationAngle
  */
    public int getMaxRotationAngle() {
  return mMaxRotationAngle;
 }

 /**
    * Set the max rotational angle of each image
  * @param maxRotationAngle the mMaxRotationAngle to set
  */
    public void setMaxRotationAngle(int maxRotationAngle) {
  mMaxRotationAngle = maxRotationAngle;
 }

 /**
    * Get the Max zoom of the centre image
  * @return the mMaxZoom
  */
    public int getMaxZoom() {
  return mMaxZoom;
 }

 /**
    * Set the max zoom of the centre image
  * @param maxZoom the mMaxZoom to set
  */
    public void setMaxZoom(int maxZoom) {
        mMaxZoom = maxZoom;
    }

 /**
     * Get the Centre of the Coverflow
     * @return The centre of this Coverflow.
     */
    private int getCenterOfCoverflow() {
        return (getWidth() - getPaddingLeft() - getPaddingRight()) / 2 + getPaddingLeft();
    }

    /**
     * Get the Centre of the View
     * @return The centre of the given view.
     */
    private static int getCenterOfView(View view) {
        return view.getLeft() + view.getWidth() / 2;
    }  
    /**
     * {@inheritDoc}
  *
  * @see #setStaticTransformationsEnabled(boolean) 
  */ 
    protected boolean getChildStaticTransformation(View child, Transformation t) {

  final int childCenter = getCenterOfView(child);
  final int childWidth = child.getWidth() ;
  int rotationAngle = 0;

  t.clear();
  t.setTransformationType(Transformation.TYPE_MATRIX);

        if (childCenter == mCoveflowCenter) {
            transformImageBitmap((ImageView) child, t, 0);
        } else {      
            rotationAngle = (int) (((float) (mCoveflowCenter - childCenter)/ childWidth) *  mMaxRotationAngle);
            if (Math.abs(rotationAngle) > mMaxRotationAngle) {
             rotationAngle = (rotationAngle < 0) ? -mMaxRotationAngle : mMaxRotationAngle;   
            }
            transformImageBitmap((ImageView) child, t, rotationAngle);         
        }    

  return true;
 }

 /**
    * This is called during layout when the size of this view has changed. If
  * you were just added to the view hierarchy, you're called with the old
  * values of 0.
  *
  * @param w Current width of this view.
  * @param h Current height of this view.
  * @param oldw Old width of this view.
  * @param oldh Old height of this view.
     */
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        mCoveflowCenter = getCenterOfCoverflow();
        super.onSizeChanged(w, h, oldw, oldh);
     }

    /**
    * Transform the Image Bitmap by the Angle passed 
    * 
    * @param imageView ImageView the ImageView whose bitmap we want to rotate
    * @param t transformation 
    * @param rotationAngle the Angle by which to rotate the Bitmap
    */
    private void transformImageBitmap(View child, Transformation t, int rotationAngle) {            
      mCamera.save();
      final Matrix imageMatrix = t.getMatrix();;
      final int imageHeight = child.getLayoutParams().height;;
      final int imageWidth = child.getLayoutParams().width;
      final int rotation = Math.abs(rotationAngle);

      mCamera.translate(0.0f, 0.0f, 100.0f);

      //As the angle of the view gets less, zoom in     
      if ( rotation < mMaxRotationAngle ) {
       float zoomAmount = (float) (mMaxZoom +  (rotation * 1.5));
       mCamera.translate(0.0f, 0.0f, zoomAmount);          
      } 

      mCamera.rotateY(rotationAngle);
      mCamera.getMatrix(imageMatrix);               
      imageMatrix.preTranslate(-(imageWidth/2), -(imageHeight/2)); 
      imageMatrix.postTranslate((imageWidth/2), (imageHeight/2));
      mCamera.restore();
 }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T03:01:59+00:00Added an answer on June 2, 2026 at 3:01 am

    It sounds like you have a NullPointerException: the findViewById call does not actually find the View, because it is never instantiated. You probably need to implement a constructor for CoverFlowClass that takes in an `AttributeSet. Perhaps like so:

    public CoverFlowClass(Context context, AttributeSet attrs) 
    {
        super(context, attrs);
    
            // do whatever other initialization is necessary
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this class called Table: class Table { public string Name { get
i have this class called MemoryManager, it is supposed to implement a simple smart
I have this class called SiteAsyncDownload.cs Here's the code: public class SiteAsyncDownloader { WebClient
I have a Ruby class called LibraryItem . I want to associate with every
I have a class called XMLtoXML.java and this is one of it's methods... import
I have a class Called MyClass. It lives in app/Lib/MyDir/MyClass. I'd like to use
I have a class called RemoteError with a self.fatal method on it. This methods
i have class call example1 this class defines a background, and i want to
i have a class called (User) and i want to make a multidimensional array
I have class called GroupSelect and made a collection List(Of GroupSelect)() . Now I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.