我使用PyQt为Windwos / Linux编写了一个应用程序,我希望将它移植到Android。应用程序很简单,有2级GUI,我不想实现触摸功能,而是使用USB键盘控制应用程序。 我正在使用这个项目: android-python27 解释我的Android PyQt代码,但它不起作用。我想我必须修改代码,但我不知道如何。我只找到一个使用android-python27的样本:
import android, time
droid = android.Android()
while 1:
droid.makeToast("Hello from Python 2.7 for Android")
time.sleep(5)
我的应用程序正在以这种方式启动:
app = QtGui.QApplication(sys.argv)
app.Encoding(QtGui.QApplication.UnicodeUTF8)
ui = MainMenu()
class MainMenu(QtGui.QWidget):#glavni izbornik
def __init__(self):
super(MainMenu, self).__init__()
i=0
self.UI(self)
def UI(self, Form):
...
我应该更改什么才能将代码用于android-python27?