Tools to visualise Android layout xml file [closed] - android

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am coming from the iOS background so I miss my interface builder in Android. I am not sure if there is a good and trustworthy LayoutPreview tool (could be free or paid) that can help us to open the xml file to preview it when we are working. The current process is to finish the xml file, compile the code and run it on the real Android device.
The Android Studio Layout tools is not always accurate and I am looking for a better tool
This is just taking much time for some simple change.

Android Studio, software based off of IntelliJ, will show you a preview of any XML file you make it it, like shown below.
In addition to being able to preview XML files, Android Studio is also a full-functioned IDE customized for developing Android applications. It is a step up from Eclipse, in my opinion, and so is IntelliJ in general

There is a layout editor built into both of the standard Android IDEs (Android Studio, and Eclipse). You can access it from any XML layout file via a tab on the bottom of the file (you can switch between visual editor, and the raw XML)

Related

Is there a vi editor for android studio [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am a curmudgeon developer from the former unix world who was raised on the vi editor. I can see how useful an IDE is for development (e.g. the Windows Visual platform or Eclipse) but I have always preferred to stay with the command line for my development platform because I am very proficient with vi.
I am now trying to learn the android development ecosystem with its IDE Android Studio. I must admit that I am slowly becoming a convert to using an IDE. However, the editor is still a source of frustration for me. It takes me forever just to navigate the source file much less do any complex refactoring. The genius of vi is that you never have to take your hands off the keyboard for both navigating the edit cursor and for entering code--so you become very efficient and fast. But with the Android Studio editor, I have to use the mouse to navigate to the edit position first, then return my hand back to the keyboard to entering code.
So, is there a vi editor plugin for Android Studio?
Thanks...
Yes there is, IdeaVim. Go to Settings (Ctrl + Alt + S) -> Plugins -> Browse Repositories and search for IdeaVim. Works pretty well. I would also recommend getting familiar with the Android Studio IDE shortcuts which are also handy.

Android APK test - blackbox [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have an apk file and I want to develop and run some tests on it (I just have the apk file, I don't have access to source code).
I found a tutorial about this here and I found a video here but both are for Eclipse and I can't make this work with Android Studio.
There is any way to do it with Android Studio with any Framework? (Robotium, Espresso, Appium, Calabash, etc...) .
Anyone know more about this and can give me some explanation or some examples to follow through?
The tool I use for automation is called Calabash. The only thing you need is an apk. No source code/building your own version of the app. Its a tool that is very powerful and quite simple to use. I have begun making a video tutorial series for it here https://www.youtube.com/playlist?list=PLInoIpH9dfLyvdaOjozON9QnQP1pK30y-
You can use any editor you want - eclipse, android studio, even a basic notepad. The calabash tools run completely independent of an editor. All you need is the android sdk which comes with android studio. You can use tools in the android sdk to help like running emulators, and visually finding ids.

Is There Any Image Editing SDK Currently Available for Android [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have been looking for an image editing SDK for Android, something that includes an option for custom stickers. A good example would be the Adobe Creative SDK (previously the Aviary SDK), though the current build only supports customizing which features to include, with no option to add your own stickers. Another good example would be the Fotor SDK, which did support adding your own stickers, but it is now under development, with no way of accessing the previous version (that I know of).
There are a few more editing SDKs available, including the PhotoEditor SDK by img.ly and CLImageEditor, but only for iOS. If anyone knows of an Android editing SDK with a sticker feature, or if someone could point me toward some decent resources on the subject (which I have not been able to find) so I can create my own, it would be greatly appreciated.
The Img.ly PhotoEditor SDK is now also available for Android. You can also easily add your own assets like stickers and fonts.
You can get a reference to the stickers array like so:
ArrayList<ImageStickerConfig> stickers = PhotoEditorSdkConfig.getStickerConfig();
For the complete example consult the docs

Looking for functional GUI testing tool for Android without code access [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking for a functional GUI testing tool for Android without the base of source code. Most things I found are JUnit testing frameworks that extend the ActivityInstrumentationTestCase2<Activity> from Android SDK.
But I look for a tool that provides f. exe. button clicks, enter String to txt fields and so on without knowing the Activity class name, package or further information.
Perfect would be something that finds Widgets on a already started Android app, can interact with it from an other application without the information I told above.
I was having a look at Robotium RC, but found no information, tutorials etc. just the JavaDoc and the .jar file.
edit: It should be open source
I think you should look at the standard monkeyrunner android tool. With the help of this tool you can start your application, emulate drag gestures, press on buttons, tap on the screen. To automate the process of creation of these scripts you can use monkeyrecorder.py script.
You can try bot-bot. Following is the link:
http://imaginea.github.com/bot-bot/
It can integrate itself with an apk. It works best if you have the source code of the app under test.

Is there a RAD for Android? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Anything to help design GUI like a paint program? (Delphi, VB, MSVC, QtBuilder, etc)
And anything to help build packages, set permissions, etc?
What is there out there to take the drudge work out of Android app creation and leave me free to concentrate on design and development?
Basic4Android, www.basic4ppc.com check it out, it compiles directly to native java (dex) with a visual designer.
DroidDraw, already mentioned, can help for the GUI. It now supports a few more root layouts, including ScrollView and TableLayout. It doesn't do much that can't be done in Eclipse, though.
Google is doing some research on a wysiwyg editor called App Inventor but if it does come out it's unlikely to be soon.
Edit: Spoke too soon, App Inventor's already out here
Try to take the time to get used to the tool (Android Eclipse plugin), it already takes care of a lot for you.
For GUI, you can try Droiddraw but I wouldn't recommend it. Last time I checked it only support AbsoluteLayout.
For the others, I found its a breeze using Eclipse, so I don't really know if there's any.
The official Android plugin for Eclipse contains everything you want.
Delphi for Android sneak preview: http://www.lenniedevilliers.net/preview/DAndroid_01.avi

Categories

Resources