Posts by Marcela Melo • 134 points
7 posts
-
0
votes2
answers425
viewsQ: Accent error in IDE editor - Linux
I’m having stress issues in the 'Netbeans' and 'Android Studio IDE’s'. My operating system is linux Elementary os [Elementary OS 0.4 Loki] Only id accentuation characters are not typed. This is not…
-
2
votes1
answer313
viewsQ: Recyclerview enviezada(diagonal) - android
I need to create a recyclerview, on android, whose items are uploaded, as per the image i tried to use a Shape on the background image but there is click problem. When I use Hape, clicking on the…
-
0
votes1
answer135
viewsA: Routes in Goole Maps
Yes, it can be done, but for this you need to study the Google Maps API Follow 2 links that I consider very good to start:…
intel-xdkanswered Marcela Melo 134 -
1
votes1
answer52
viewsA: How to create a menu in android fully animated
You can use setColorFilter in the icon click action. See the example: img1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { img1.setColorFilter(0xff00aa00,…
-
4
votes1
answer82
viewsA: Use standard Android Activity template to switch between editing and viewing
in case, for you to 'exchange' a textview for edittext you can use a Viewswitcher Example: -- LAYOUT <ViewSwitcher xmlns:android="http://schemas.android.com/apk/res/android"…
androidanswered Marcela Melo 134 -
1
votes3
answers1934
viewsA: How to use Scrollview + Listview
use the fillViewport tag on your scroll android:fillViewport="true" Your structure will stay that way: <ScrollView android:layout_width="match_parent" android:layout_height="wrap_content"…
-
1
votes1
answer51
viewsA: I created a gridView. Now how do I call an input from the gridview icons?
I usually do it this way: gridView.setOnItemClickListener(new GridView.OnItemClickListener(){ @Override public void onItemClick(AdapterView parent, View view, int position, long id) { // chamar sua…
gridviewanswered Marcela Melo 134