I'm working on my android project and didn't know that there was something called multiple screen support. I thought developing one kind of resolution would be the same on others. But i was wrong. Currently I've designed my app to work with resolution 1080*1920. But i want it to support all screen resolutions at least the below mentioned.
480*800,
1080*1920 (supports),
720*1280,
480*854,
480*960,
320*480,
1440*2560
So what can be done in this regard. I don't know what code to post here. Please guide me through this. Thank You
credits.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f6f6f6">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="The Team"
android:id="@+id/textView3"
android:textSize="40sp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textColor="#ff4a3b" />
<ImageView
android:layout_width="130dp"
android:layout_height="130dp"
android:layout_marginTop="8dp"
android:layout_marginRight="20dp"
android:id="@+id/imageView2"
android:src="@mipmap/ic_launcher"
android:layout_below="@+id/textView3"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="32dp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="PRAVEEN"
android:id="@+id/textView4"
android:textSize="15sp"
android:textColor="#010101"
android:layout_below="@+id/imageView2"
android:layout_alignRight="@+id/imageView2"
android:layout_alignEnd="@+id/imageView2"
android:typeface="monospace" />
<ImageView
android:layout_width="130dp"
android:layout_height="130dp"
android:layout_marginTop="8dp"
android:layout_marginLeft="30dp"
android:id="@+id/imageView"
android:src="@mipmap/ic_launcher"
android:layout_below="@+id/textView3"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="74dp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="AKASH"
android:id="@+id/textView5"
android:textSize="15sp"
android:textColor="#010101"
android:typeface="monospace"
android:layout_below="@+id/imageView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<ImageView
android:layout_width="130dp"
android:layout_height="130dp"
android:layout_marginTop="165dp"
android:layout_marginRight="20dp"
android:id="@+id/imageView3"
android:src="@mipmap/ic_launcher"
android:layout_below="@+id/textView3"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="32dp"
android:layout_marginTop="157dp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="PRANOTI"
android:id="@+id/textView6"
android:textSize="15sp"
android:textColor="#010101"
android:layout_below="@+id/imageView2"
android:layout_alignRight="@+id/imageView2"
android:layout_alignEnd="@+id/imageView2"
android:typeface="monospace" />
<ImageView
android:layout_width="130dp"
android:layout_height="130dp"
android:layout_marginTop="165dp"
android:layout_marginLeft="30dp"
android:id="@+id/imageView6"
android:src="@mipmap/ic_launcher"
android:layout_below="@+id/textView3"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="72dp"
android:layout_marginTop="157dp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="SONAL"
android:id="@+id/textView8"
android:textSize="15sp"
android:textColor="#010101"
android:typeface="monospace"
android:layout_below="@+id/imageView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="361dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="GUIDE"
android:id="@+id/textView67"
android:textSize="30sp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textColor="#ff4a3b" />
<ImageView
android:layout_width="130dp"
android:layout_height="130dp"
android:id="@+id/imageView69"
android:src="@mipmap/ic_launcher"
android:layout_below="@+id/textView67"
android:layout_centerHorizontal="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Prof. M.G.Huddar"
android:id="@+id/textView89"
android:textSize="15sp"
android:textColor="#010101"
android:typeface="monospace"
android:layout_below="@+id/imageView69"
android:layout_toLeftOf="@+id/textView6"
android:layout_toStartOf="@+id/textView6" />
</RelativeLayout>
</ScrollView>