当我对布局资源文件进行更改时,当从 Android Studio 2.0(预览版 3b)构建和安装 apk 文件时,它不会更新/反映。
示例:我有一个EditText
,我添加了一个TextInputLayout
这样的:
<android.support.design.widget.TextInputLayout
android:id="@+id/input_layout_new_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp">
<EditText
android:id="@+id/edit_text_new_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_your_new_password"
android:inputType="textPassword"
android:saveEnabled="false" />
</android.support.design.widget.TextInputLayout>
更新应用程序后的结果与我添加之前相同TextInputLayout
,只是EditText
没有TextInputLayout
。
我试过的:
- 构建/清理项目
- 构建/重建项目
- 文件/无效缓存/重新启动..
- 先卸载应用
- 关闭即时运行
我怀疑这可能是 Android Studio 2.0 的 Preview 3b 版本的错误导致的。有任何想法吗?也许这只是一个设置/配置?