I've created a good looking layout for my app, but I've used relative layouts inside linear layouts (According to my needs).
Is this ok? my team partner told me that this does not follow the android guidelines and this would make the app go down in the search.
So basically, Are there any limitations on how we should use the layouts and does Google monitor these codes when the app is in the play store.
Here is the code (Had to put it in after an edit)
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/bio2"
android:layout_below="@+id/bio1"
android:orientation="horizontal"
android:layout_marginTop="15dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Sagar Vakkala"
android:textStyle="bold"
android:textColor="#000"
android:id="@+id/namebio"
android:layout_marginLeft="15sp"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/namebio"
android:textStyle="normal"
android:text="From Delhi to Chennai in a whiff :)"
android:textColor="#000"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
/>
</RelativeLayout>
</LinearLayout>