在android中使用布局有什么限制吗?



我已经为我的应用程序创建了一个好看的布局,但是我在线性布局(根据我的需要)中使用了相对布局。

这样可以吗?我的团队伙伴告诉我,这不符合android指南,这会使应用程序在搜索中下降。

所以基本上,是否有任何限制关于我们应该如何使用布局和谷歌是否监控这些代码当应用程序在play商店。

下面是代码(必须在编辑后放入)

           <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>

不,你添加多少布局没有限制,也没有任何限制,你必须遵循构建Android应用程序。然而,谷歌确实监控你的应用程序,放在PlayStore。

在您的情况下,您可以使用ConstraintLayout。

看一下文档:https://developer.android.com/training/constraint-layout/index.html

尽量减少嵌套的线性布局在另一个或两个级别是好的,如果你试图来与一个有点复杂的UI最好扩展android ViewGroup类和创建自己的视图

相关内容

  • 没有找到相关文章

最新更新