我为我的应用创建了一个漂亮的布局,但我在线性布局中使用了相对布局(根据我的需要)。
这可以吗?我的团队合作伙伴告诉我,这不符合Android指南,这会使应用程序在搜索中失败。
基本上,对于我们应该如何使用布局是否存在限制,并且当应用程序位于Play商店时Google会监控这些代码。
这是代码(必须在编辑后将其放入)
<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>
答案 0 :(得分:0)
不,您添加的布局数量没有限制,也不存在构建Android应用程序时要遵循的任何限制。然而谷歌确实监控你的应用程序,放在PlayStore上。
答案 1 :(得分:0)
在您的情况下,您可以使用ConstraintLayout。
查看文档: https://developer.android.com/training/constraint-layout/index.html
答案 2 :(得分:0)
尝试减少嵌套线性布局在另外一个或两个级别内是很好的,如果你尝试用一点点复杂的UI来更好地扩展android ViewGroup类并创建你自己的视图