4

I'm working on resizing and changing background images. However, each time I have to restart Android Studio so the Layout Preview will refresh the image.

Doesn't work:

  • Changing API level
  • Changing Preview orientation
  • Changing theme
  • Synchronizing project

What else can I do?

On Android Studio 2.2.2, Windows 10 64-bit on AMD A8-6410 with AMD Radeon R5 Graphics, 11 GB of RAM.

4

1 回答 1

3

如果您使用的是 Android Studio 2.2 之前的版本: 只需点击布局编辑器菜单栏上的刷新按钮即可。

否则:

转到您正在处理的布局。然后,将任何资源更改为不正确的名称。

例如,如果您有一个具有此属性的按钮:

android:background="@drawable/button"

将其替换为任何随机错误资源:

android:background="@drawable/thisIsSomethingVeryRandomAndDoesntExist"

然后,你会得到类似这样的东西:

图片

单击“刷新” (有时是“清除缓存”),然后撤消对属性所做的更改。瞧!

有时甚至改变方向也有效。

资源

于 2016-11-03T18:55:41.823 回答