LinearLayout中包含的ConstraintLayout中包含的TextView仅在Android Studio的“预览”窗口中可见。
TextView限于父级的开始和顶部,因此应将其放置在View的左上角。所有这三个视图均设置为适合父级的大小。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity" >
<android.support.constraint.ConstraintLayout
android:id="@+id/view_downloads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible"> <!-- default -->
<TextView
android:id="@+id/textview_downloads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textAppearance="@android:style/TextAppearance.Material.Large"
android:visibility="visible"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="Hello World!" />
</android.support.constraint.ConstraintLayout>
</LinearLayout>
我希望看到“ Hello World!”放置在屏幕的左上角,如Preview window here所示,但我看到的是空白视图,如this screenshot所示,该视图取自使用“空活动”项目的最小示例模板和上面显示的布局。
答案 0 :(得分:2)
尝试使用
android:text="Hello World!"
代替
tools:text="Hello World!"
我想Android Studio已停止发出此类警告。
注意: tools:text
仅在布局编辑器中用于标记事物
另一个说明::您可以在活动中使用TextView.setText()
作为替代。