Android - 上下文在布局中的含义是什么?
Android - What´s the meaning of context on layouts?
布局中上下文的概念是什么?
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="THIS VALUE!!!!!!">
</Scrollview>
tools:context
提供 Android Studio 中的可视化布局编辑器用来呈现布局的上下文(即与布局相关联的 activity)。您可以阅读更多相关信息 here。
布局中上下文的概念是什么?
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="THIS VALUE!!!!!!">
</Scrollview>
tools:context
提供 Android Studio 中的可视化布局编辑器用来呈现布局的上下文(即与布局相关联的 activity)。您可以阅读更多相关信息 here。