Why getting error on getFlipInterval();

I am getting error on viewFlipper.getFlipInterval();
Getting this error

Please help me in fixing this error

What extension are you trying to make?

ViewFlipper extension

What is that code trying to achieve? I mean what does the extension do?

Search on google or chrome you will got
This extension can flip your views

// In Fields,
private android.widget.ViewFlipper viewFlipper;
//In Constructor,
viewFlipper = new android.widget.ViewFlipper(this.context);

//
public int FlipInterval(){
return viewFlipper.getFlipInterval();
}
1 Like

I think this will not work because you are initialising ViewFlipper but ViewFlipper can not be initialised please compile once this code

Public Constructors of ViewFlipper

Compiled Extension (Using Niotron IDE) :
ViewFlipper.aix (4.9 KB)

2 Likes

Thanks @oseamiya I will try this now

@oseamiya getting same error
I am using http://bot.colintree.cn:8048/ to create extension

It's straight mentioned in the error logs, the name getFlipInterval doesn't exist.

3 Likes

Not sure, maybe your android lib for the extension is below API 29, missing the method name.

3 Likes

But see in ViewFlipper class getFlipInterval is their

Yes, may be

My code is working fine in Niotron IDE

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.