android 与模拟器和实时移动相关的工作室问题 phone

android studio issue related to emulator and real time mobile phone

我在 android studio 中创建了新的登录页面。 activity xml 在 Emulator 上看起来不错,但在实时移动中它看起来像不规则对齐,我该怎么做?我为此使用了线性布局。

您很可能对像素进行了硬编码,请尝试转换为 ConstrainsLayout。 1 如果布局不简单,LinerLayout 不能提供足够的灵活性。

最有效的解决方案是使用 ConstraintLayout。 与其他布局不同,ConstraintLayout 具有平面视图层次结构,因此它比其他各种布局表现更好。只有一个布局可以处理您的 UI.

或者您可以使用 RelativeLayout,然后在 RelativeLayout 中使用 LinearLayout 作为子级,即,您将需要创建一个包含一些嵌套视图的层次结构,这会对性能产生不利影响。