2013-05-03 81 views
3

我想在ADF mobile中最頂層的視圖PanelPage的背景上顯示圖像。我想在背景設置圖像。在屏幕上顯示圖像(查看)背景

我的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> 

我設置圖像的URL,但它不影響。如果我設置了背景顏色,那麼它就會生效。

+0

你找到一個解決方案?我的bg圖像可以設置,但不完整,如果組件比圖像小,我想設置可變尺寸的設備,即xhdpi,mdpi,ldpi,它會被剪切。我困在它上面。 – Deepika 2014-10-20 06:46:13

回答

0

如果使用在iOS剝皮

  1. 圖像文件/應用/ ApplicationController中/的public_html /資源
  2. CSS文件位於/應用/ ApplicationController中/的public_html /資源/在.css文件的CSS
.panel-page-custom { 
    background-image: url("../bg.png"); 
} 
    在AMX頁

AMX:panelPage的styleClass =面板頁面定製