为什么在运行此代码时,我的Android仿真器上显示“ C ++的Hello”?

时间:2018-12-24 00:03:44

标签: java android xml android-studio android-emulator

当我在下面运行代码时,我得到“来自C ++的Hello”,而不是预期的“ Hello World!”。在我的USB连接的Android手机和模拟器上。为什么会这样?

我已经尝试在我的android手机和android模拟器(PIXEL XL API 28)上运行它,并且它们都输出相同的东西“ Hello form c ++”

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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=".MainActivity">

<TextView
    android:id="@+id/sample_text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    android:textSize="35dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

0 个答案:

没有答案