TextView没有显示在android模拟器上?

问题描述 投票:0回答:1

我创建了一个秒表应用。当我在我的标签页(android os kitkat)上运行此应用程序时,它工作正常。这是我的Android应用程序的屏幕快照,该屏幕快照在选项卡上运行。

tab screenshot

但是当我在android垂直设备(操作系统饼图)上运行相同的应用程序时,它不会显示textView的内容。这是我的Android虚拟设备的屏幕截图。

android emulator screenshot

这是我的xml代码:-

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".StopwatchActivity">

    <TextView
        android:id="@+id/time_view"
        android:layout_width="231dp"
        android:layout_height="0dp"
        android:layout_marginTop="116dp"
        android:layout_marginBottom="58dp"
        android:text=""
        app:layout_constraintBottom_toTopOf="@+id/start_button"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/start_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="51dp"
        android:layout_marginBottom="61dp"
        android:text="@string/start"
        android:onClick="onClickStart"
        app:layout_constraintBottom_toTopOf="@+id/stop_button"
        app:layout_constraintStart_toStartOf="@+id/time_view"
        app:layout_constraintTop_toBottomOf="@+id/time_view" />

    <Button
        android:id="@+id/stop_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="1dp"
        android:layout_marginBottom="53dp"
        android:text="@string/stop"
        android:onClick="onClickStop"
        app:layout_constraintBottom_toTopOf="@+id/reset_button"
        app:layout_constraintStart_toStartOf="@+id/start_button"
        app:layout_constraintTop_toBottomOf="@+id/start_button" />

    <Button
        android:id="@+id/reset_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="2dp"
        android:layout_marginBottom="241dp"
        android:text="@string/reset"
        android:onClick="onClickReset"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="@+id/stop_button"
        app:layout_constraintTop_toBottomOf="@+id/stop_button" />
</androidx.constraintlayout.widget.ConstraintLayout>
android android-emulator
1个回答
0
投票

您已将textview的高度设置为0dp。那是问题。

解决方案:android:layout_height =“ wrap_content”

© www.soinside.com 2019 - 2024. All rights reserved.