Hi,
I am creating a Tizen native app using SDK 2.4. I have created UI using edje framework using .edc file.
When keyboard appears when entering some text in entry, all other elements are gretting shrink and they overlap on each other.
How can I avoid element resizing when keyboard appears?
I tried fixed & aspect properties but it didnt worked.
part { name: "rect";
type: RECT;
scale: 1;
description { state: "default" 0.0;
rel1 {
to:"main_rect";
relative: 0.0 0.0;
}
rel2 {
to: "main_rect";
relative: 1.0 0.1;
}
color: 0 161 222 255;
fixed: 1 1;
aspect: 1.0 1.0;
aspect_preference: NONE;
}
}