在屏幕(视图)背景中显示图像

时间:2013-05-03 11:06:06

标签: oracle-adf hybrid-mobile-app oracle-adf-mobile

我想在PanelPage的背景显示图像,这是ADF mobile中最顶级的视图。我想在背景设置图像。

我的AMX文件是:

<?xml version="1.0" encoding="UTF-8" ?>
<amx:view xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:amx="http://xmlns.oracle.com/adf/mf/amx"
          xmlns:dvtm="http://xmlns.oracle.com/adf/mf/amx/dvt" >

 <amx:panelPage id="pp1" inlineStyle='background-image:url("image/custom_cell_image.png");'>

  <amx:facet name="header">
      <amx:outputText value="Requition Line" id="ot1"/>
    </amx:facet>
    <amx:facet name="primary">
      <amx:commandButton id="cb1" text="Requisition" inlineStyle="font-size:small;" action="__back"/>
    </amx:facet>
    <amx:facet name="footer">
      <amx:commandButton id="cb2" action="back" text="Approve" styleClass="adfmf-commandButton-default"/>
            <amx:commandButton text="Reject" id="cb3"/>
            <amx:commandButton text="Request More Info" id="cb4"/>
    </amx:facet>
    <amx:commandButton text="commandButton1" id="cb5"/>
  </amx:panelPage>
</amx:view>

我设置了图片网址,但不受影响。如果我设置背景颜色,那么它就会生效。

1 个答案:

答案 0 :(得分:0)

如果在iOS上使用皮肤

  1. / app / ApplicationController / public_html / resources
  2. 中的图像文件
  3. 位于/ app / ApplicationController / public_html / resources / css
  4. 的Css文件
  5. 在.css文件中
  6. .panel-page-custom {
        background-image: url("../bg.png");
    }
    
    1. in amx page
    2.   

      amx:panelPage styleClass = panel-page-custom