Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~1K People Reached

3 Posted Topics

Member Avatar for vishalsingh1080

I think Android studio is a good IDE to start with. You can use eclipse and netbeans but Android Studio is much better solution. Apart from that you can also get started with simple youtube videos. https://www.youtube.com/watch?v=iiAovTckXF0 I have also checked some of the Vogella tutorials. And they are good …

Member Avatar for mack_5
1
471
Member Avatar for sebinjose

Phusion Passenger is often used for deploying on Rails. There are some of the youtube videos on how to use passenger gem. Also do check if the gem is available with your host.

Member Avatar for MaheshKale
0
408
Member Avatar for MaheshKale

I am trying to change the background of imageview using the following code. Here's my xml code. <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.devnami.maya.maya.MainActivity" > <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/forest" android:adjustViewBounds="true" android:scaleType="fitXY" android:id="@+id/view1" /> <ImageButton android:id="@+id/button1" android:layout_width="45dp" android:layout_height="45dp" android:textStyle="bold" android:textColor="#FFFFFF" android:background="@drawable/flower" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" /> </RelativeLayout> And here's my mainactivity.java …

0
162

The End.