Any Android app for GUI ouput? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Any Android app for GUI ouput?

Is there any Android app for GUI ouput as same as we get in computer?

18th Mar 2019, 9:57 AM
Manpreet Kaur
Manpreet Kaur - avatar
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.
18th Mar 2019, 10:52 AM
Шащи Ранжан
Шащи Ранжан - avatar
+ 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.
18th Mar 2019, 12:13 PM
Шащи Ранжан
Шащи Ранжан - avatar
+ 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?
18th Mar 2019, 12:26 PM
Шащи Ранжан
Шащи Ранжан - avatar
+ 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.
18th Mar 2019, 12:37 PM
Шащи Ранжан
Шащи Ранжан - avatar
+ 3
I don't know if this is what you're looking for, but you can make android gui with Kivy (www.kivy.org)
18th Mar 2019, 10:41 AM
HonFu
HonFu - avatar
+ 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???
18th Mar 2019, 12:29 PM
Manpreet Kaur
Manpreet Kaur - avatar
+ 1
I have already downloaded that... Bt the output is not as same as computer... Is there any other app???
18th Mar 2019, 12:11 PM
Manpreet Kaur
Manpreet Kaur - avatar
+ 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() ---------------------
18th Mar 2019, 12:17 PM
Manpreet Kaur
Manpreet Kaur - avatar