3

次の例では、ファイル MessageView.ui.xml から:

<ui:style>
    .polite {
      position:fixed;
      background-color:notice-background-color;
      top:1em;
      left:2em;
      white-space:nowrap;
      border-radius:.5em;}
</ui:style>

<g:PopupPanel styleName="{style.polite}">
    <g:HTML ui:field="message">Message goes here.</g:HTML>
</g:PopupPanel>

@notice-background-color を定義して、他の UiBinder ファイルでも定義を使用できるようにすることはできますか?

4

1 に答える 1

3

はい、できます。色を static として定義しますString

package com.myproject.client.resource;

public class MyColors {
    public static String lightGreen = "#0bdc1a";
}

そして、@eval変数を定義します:

<ui:style>
    @eval notice-background-color com.myproject.client.resource.MyColors.lightGreen;

    .polite {
      position:fixed;
      background-color:notice-background-color;
      top:1em;
      left:2em;
      white-space:nowrap;
      border-radius:.5em;}
</ui:style>

<g:PopupPanel styleName="{style.polite}">
    <g:HTML ui:field="message">Message goes here.</g:HTML>
</g:PopupPanel>
于 2013-04-17T14:07:40.627 に答える