aboutsummaryrefslogtreecommitdiffstats
path: root/layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java
diff options
context:
space:
mode:
Diffstat (limited to 'layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java')
-rw-r--r--layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java b/layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java
index 2cfe770..32c1ff2 100644
--- a/layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java
+++ b/layoutlib_api/src/com/android/ide/common/rendering/api/RenderParams.java
@@ -17,7 +17,7 @@
package com.android.ide.common.rendering.api;
import com.android.resources.Density;
-import com.android.resources.ScreenSize;
+import com.android.resources.ScreenLayoutSize;
/**
* Base class for rendering parameters. This include the generic parameters but not what needs
@@ -46,7 +46,7 @@ public abstract class RenderParams {
private IImageFactory mImageFactory = null;
- private ScreenSize mConfigScreenSize = null;
+ private ScreenLayoutSize mConfigScreenSize = null;
private String mAppIcon = null;
private String mAppLabel = null;
private String mLocale = null;
@@ -138,7 +138,7 @@ public abstract class RenderParams {
mImageFactory = imageFactory;
}
- public void setConfigScreenSize(ScreenSize size) {
+ public void setConfigScreenSize(ScreenLayoutSize size) {
mConfigScreenSize = size;
}
@@ -218,7 +218,7 @@ public abstract class RenderParams {
return mImageFactory;
}
- public ScreenSize getConfigScreenSize() {
+ public ScreenLayoutSize getConfigScreenSize() {
return mConfigScreenSize;
}