System of help for Android Studio? - java

this is my first time with Android Studio and I can remember when you try to use button functions eclipse shows the functions available and text of description, but Android Studio no...
For example: button.setOnClickListener()....
This system of help it's available in Android Studio?
Sorry for my english and thanks in advance!

Do you mean suggestions?
Check if CTRL + Space bar is what you are looking for as these stand for suggestion by default. Please notice Android Studio is based on IntelliJ IDEA, so all IDEA's shortcuts should work in AS as well.Read more about code assistance here.
By the way - you can set your shortcuts to be Eclipse-like.
You may also want to read FAQ for Eclipse Users
Edit.
Ah, I posted so many link already, I'll post one more: Default shortcuts keymap

Related

Is there a way to autoformat code in Android Studio?

I have been coding for a while in Visual Studio with visual basic and there was an option to autoformat code at the same time you were coding.
I know i can format it in Android Studio with CTRL+ALT+L but is there any option so the software do it automatically?
Thanks.
You can't, you must do t 'manually' with the macro, the closer option is maybe to map the macro on ctrl+s to save and format at the same time.
Yes, it's possible. There's an IntelliJ plugin called save actions that will allow you to do this.
https://plugins.jetbrains.com/plugin/7642-save-actions
instructions (plus more) here https://jivimberg.io/blog/2018/06/10/intellij-idea-tips/

How can i adjust the size of the design tab in android studio

I am using Android Studio since a few days, and latelly i got a problem
My design tab adjusted his size and now i can't see my whole application because it is to much to the left.
Does anyone know how to fix this?
Try SHIFT+F12 to reset the IDE view
Hope it works

Visual Studio white background theme for IntelliJ IDEA

I hate the Java IDE's and want the feeling of safety that looking at the editor in Visual Studio gives me.
Is there a way I can get a Visual Studio theme, the normal one with the white background, and not the one with the black background, that I can import into IntelliJ IDEA to make it look like Visual Studio's syntax coloring?
Was originally posted as a comment, but it seems to have answered the question so I'll post it here as well for completeness.
I'm not an Intellij-idea user, but it seems like you can get themes here. [Editor's note: there used to be two links, but the website currently redirects to a GH repo in a way that makes the second link untracable. Ask OP for a new link]

Creating and displaying a Pop-up window using the Android NDK?

How can I create and display a pop-up window using the Android NDK (i.e the equivalent of the win32 MessageBox() ) ? I took a look at what I assumed to be the the documentation of the NDK but I couldn't find it.
Thank you.
See this link , i think this may help you http://www.dynadream.com/ddweb/index.php/Special_Blog?id=20

Is there a real Android visual designer for IDEs?

I'm trying to develop an Android application with UI. So it's little complex for me to create UI with codes. I was using Visual Studio for long time where visual design is piece of cake. I also used Netbeans and Eclipse for java applications with UI but when it comes to Android I can't find a good way for UI desing. There is a visual design part in Eclipse but I want to use Netbeans as long as it's possible. Also I think DroidDraw is not good enaugh too. So I seached on web for Netbean's visual design tool and found nothing. If there is no tool or plug-in like this WHY? Thank you for any help.
Edit:
Well, long time passed. I just get used to code my ui. Also I am using Android Studio. 8)
edit
just saw that you've used DroidDraw.
There is official GUI designer included in ADT. Browse for main.xml (project/res/layout/main.xml) and doubleclick it :)
enjoy!
The combination of ADT (Android Development Kit) and eclipse 3.1 + will help you to develop the application graphically. Once you open the layout xml files, click “Graphical Layout” tab at the bottom of the section to open the graphical view. Now you can drag and drop components & also update layout.
But it is better to understand how the xml is defined in the layout. This will help you to fix any problems (in case).
Hope this helps.
Using Embarcadero RAD Studio XE7 (delphi or c++builder) allows for that task but it builds apk files with ome 10mo,

Categories