+ 1
Any Android app for GUI ouput?
Is there any Android app for GUI ouput as same as we get in computer?
8 Answers
+ 6
Do you mean GUI using Python? If yes then yea there's an app called Pydroid3 which let's you do that. Search for it in the play store.
+ 6
What do you exactly mean by output is not same as computer? If you're talking about the layouts then I'll say it depends on the programmer to make app which works perfectly in different screen sizes. You can obviously create responsive app.
+ 5
Ugh! I'm unable to post the comment 😣.
I'm getting the window.
On top left corner, it says:
Manpreet
And a button here written "sales".
Are you sure you've tkinter installed?
+ 5
Apologies, yes it's an in-built module.
No, it won't create a new window like one it does on PC. It's the app which helps it to show and not the device itself. So no new window will appear.
You probably want this 'cus you want to see the output in the console, sadly that won't work.
+ 3
I don't know if this is what you're looking for, but you can make android gui with Kivy (www.kivy.org)
+ 2
tkinter is inbuilt i think.. You dont need to Install it..... If so it must have given arror but there is no error... The output is on full screen on my android device... Not getting any other window. R u getting any other window???
+ 1
I have already downloaded that... Bt the output is not as same as computer... Is there any other app???
+ 1
Actually m not getting the window
Have a look at my code
---------------------------------
from tkinter import *
from tkinter import ttk
root=Tk()
root.title("Labeler")
root.geometry("200x50")
app=Frame(root)
app.grid()
label=Label(app, text = "Manpreet")
label.pack()
def sales():
print("2346743")
button=Button(app, text="sales")
button.pack()
button.config(command=sales)
root.mainloop()
---------------------