3 Posted Topics
Re: 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 … | |
Re: 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. | |
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 … |
The End.