当来自 android studio 的 运行 应用程序时,文本显示在一个 phone 中,但不显示在另一个 phone 中

Text is showing in one phone but not on another phone when running app fron android studio

我有一个phone是三星M51,另一个是lava iris型号。当我在 lava 中 运行 应用程序时,它 运行 正常但不显示文本视图,另一方面,当它 运行 在三星上时,它 运行 没有任何问题。为什么这两个不同的结果具有相同的代码。Code in my app

不确定,但主要原因可能是 layout_marginToplayout_marginBottom 的巨大值。

尝试使用布局约束而不是边距来放置您的 TextViews。

您使用的是几乎 700dp 的硬编码边距,Lava Iris 的屏幕尺寸对于这些边距来说太小了。 您应该使用适当的布局(例如 ConstraintLayout)将 TextView 放置在屏幕上。

    <androidx.constraintlayout.widget.ConstraintLayout
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/tv_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Example"
        app:layout_constraintEnd_toStartOf="@+id/textView"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />


    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Example"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toEndOf="@+id/tv_1"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>