As in I want to make something like this
<code><pre>
from kivy.uix.widget import Widget
form jnius import autoclass
WebView = autoclass('android.webkit.WebView')
class MyWebView((WebView, Widget):
def __init__(self, **kwargs):
super(MyWebView, self).__init__(**kwargs)
#....
#bind WebView and Widget size
def on_size(self, size):
self.width = size[0]
self.height = size[1]
#bind WebView and Widget pos
def on_pos(self, pos):
self.width = pos[0]
self.height = pos[1]
</pre></code>
Please help I am new to programming.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.