We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After reading the android document, I want use AbsoluteLayout.LayoutParams, but I can't use this.
AbsoluteLayout.LayoutParams
adb logcat printed a message:
adb logcat
AttributeError: type object 'android.widget.AbsoluteLayout' has no attribute 'LayoutParams'
This is my code snippet:
AbsoluteLayout = autoclass('android.widget.AbsoluteLayout') lp = AbsoluteLayout.LayoutParams(320, 240, 0, 100)
Is there a problem with my code?
The text was updated successfully, but these errors were encountered:
With autoclass('android.widget.AbsoluteLayout.LayoutParams') also can not use. error message:
autoclass('android.widget.AbsoluteLayout.LayoutParams')
JavaException: Class not found 'android.widget.AbsoluteLayout.LayoutParams'
Sorry, something went wrong.
It can not seem to directly access a nested class,.
Finally, I use the Java code to solve it.
No branches or pull requests
After reading the android document, I want use
AbsoluteLayout.LayoutParams
, but I can't use this.adb logcat
printed a message:This is my code snippet:
Is there a problem with my code?
The text was updated successfully, but these errors were encountered: