I want to do GooglePlus on Android. I know iOS have some open source which can be used to show the data based on their content-size and by maintaining the row linear, but I cannot search Android. I want to do it, but I do not know where to start. Can you give me some advice and links?
Related
I am trying to develop a custom gif keyboard for my company with very little experience. I want to pull gif images from our company server into a simple gif keyboard so that our marketers can text gifs to accounts. So far I have found information on
developing an IME: https://developer.android.com/develop/ui/views/touch-and-input/creating-input-method#java
adding image support:https://developer.android.com/develop/ui/views/touch-and-input/image-keyboard#kotlin
setting up a content provider:https://developer.android.com/guide/topics/providers/create-document-provider
and even sample code for a Commit Content Sample IME
I really am just needing some basic code to generate a gif keyboard like the image in the developer documentation, but am not quite finding the resources necessary to achieve that.
Example of Image Keyboard
I feel like I've got all the pieces but no instructions for how to assemble them. Any guidance would be greatly appreciated.
Specifically, I'm not sure how to code to access my content provider in the Commit Content Sample IME sample code. What code do I use and where does it go?
I'm planning to develop a googlecast application using android. But i'm wondering if we can use custom receiver that has a video and a layout that displays text from the android application, i have looked everywhere but i couldn't find anything related to my question. is this achievable:
is this achievable using android without using custom receiver.
is this achievable by only using custom receiver that displays
lets say ( half of the screen video and the other half custom layout
that receives data from android device) .
if there is any tutorial or any guide on how to implement this if possible please do point me to the right track.
P.S: i have searched for such thing but zero results i found.
thanks for your help.
You need to write a custom receiver; a custom receiver has some cast related stuff but it is simply an html page so you can layout the way you want. You can look at our documentations and samples.
I am working on simple app, similar to Instagram, Facebook app or G+ app. I want to make board with other users posts. The posts on board will be displayed in bocks, simular to Facebook:
How should i create such blocks, that i can fill with downloaded data and add up to the board, modify them or remove them from board while user is still in board activity? Is there any class that i could use?
You should probably look at ListView.
It lets you maintain a list of objects and build views from visible ones, add more dynamically etc.
As for the actual block.. Depends on how you want to display them. I hope you know about View types such as LinearLayout etc, if not you should probably read some basic guide for android programming before you begin.
I'm currently developing an Android app for a client. Problem is their mockup screens contained a UI view that I'm unfamiliar with. In short, I'm not sure what approach/implementation to use.
This is what I'm trying to achieve:
The user taps on SALES TOOLS, and a popup of some sort appears with options leading to other features of the app.
Any suggestions on what implementation I can use?
There are lots of library Available in market
Please check this URL it may be help you links given below
Chrome Style Help Popups
Quick-action-pattern-in-Android
Another alternative would be "super-tooltips":
https://github.com/nhaarman/supertooltips
Use android.widget.PopupWindow to create popwindow for a view.
using it various method you can put the window where ever you want.
Use this link will satisfy your needs .
https://androidresearch.wordpress.com/2012/05/06/how-to-create-popups-in-android/
I'd like to make something close to alerts or modal view in iOS (message and 1 or 2 or 3 buttons), but on Android. For example, then users clicks Back button on some screens of the app he will asked to save or not his progress.
Are there any native ways to do it using Android SDK in Eclipse?
Any suggestions how to implement it in custom design?
Thanks.
this site and this site is giving a simple custom dialog example in code. you can use the code as guidance.