1

我想要基本小部件(也是容器)的背景颜色(或图像),如网格或框。

如何将背景颜色设置为基本小部件?

在 EFL 基本文档中,我找到了 elm_bg 函数,但我无法将其设置为其他基本容器的背景...

4

3 回答 3

3

使用 elm_table 小部件。通过使用表格,您可以将多个对象打包到同一个位置。

  1. 创建 elm_table。
  2. 创建 elm_bg (您可以通过颜色或图像设置 bg。
  3. 将该 bg 打包到与容器小部件相同位置的表格中。

谢谢。

于 2014-07-14T09:57:25.867 回答
1

也在tizen.org上问过,这部分显然不清楚

https://developer.tizen.org/ko/forums/native-application-development/how-change-button-background-color

主题是要走的路,示例代码在以前的 URL 上共享。

于 2016-10-08T23:15:43.567 回答
1
Evas_Object *bg = elm_bg_add(parent);

// Set a color
elm_bg_color_set(bg, 64, 127, 256);

// Set a background image
elm_bg_file_set(bg, "/path/to/the/image", NULL);

// Create your grid or box component with the background as parent
Evas_object *box = elm_box_add(bg);

/* Load content at the topmost layer of the background */
/* Note that the background has a swallow part and there is where our box will go */
elm_object_content_set(bg, box);
于 2018-10-25T12:33:35.700 回答