1

我已自定义主题已下载主题,作为参考添加,但我的移动 UI 未显示我的自定义主题:

这是自定义主题:ThemeRoller Custom Theme 并将其添加为 phonegap Android 但没有结果:

     <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
        <html>
        <head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
        <title>Insert title here</title>
        <link rel="stylesheet" href="themes/converterThemeFinald.min.css" />
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile.structure-1.3.2.min.css" />
        <link rel="stylesheet" href="themes/converterThemeFinald.min.css" />
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
        <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>

        <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
 <div data-role="page" id="converterListPage">

   <div data-role="header">
    <h1>UNIT CONVERTER</h1>
   </div>
   <div data-role="content">
      <ul data-role="listview" data-inset="true">
       <li><a href="#"  id="tempButton">TEMPERATURE</a></li>
       <li><a href="#" id="weightButton">WEIGHT</a></li>
       <li><a href="#" id="currencyButton">CURRENCY CONVERTER</a></li>
       <li><a href="#" id="speedButton">SPEED CONVERSION</a></li>
      </ul>


   </div>
 </div>

如何在我的应用程序中获取我的主题 Roller 的自定义主题,请在 Gajorates 的回答后帮助我进行屏幕截图: 屏幕截图

4

1 回答 1

1

您的问题是您盲目地遵循 jQuery Mobile 主题滚轮教程如何应用新主题。您有两个新的主题色板 A 和 B。在初始化完整的 jQuery Mobile CSS 之前,您将包括它们,它们也有原始的 A 和 B 色板。因为完整的 jQuery Mobile CSS 是最后初始化的,所以它的 CSS 将应用于您的自定义 CSS。

您可以通过 2 种不同的方式解决此问题:

  1. 删除这一行:

    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
    

    HTML 示例:

    <!DOCTYPE html>
    <html>
        <head>
            <title>jQM Complex Demo</title>
            <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
            <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
            <link rel="stylesheet" href="test.css" />
            <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile.structure-1.3.2.min.css" /> 
            <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
            <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>    
        </head>
        <body>
            <div data-role="page" id="index">
                <div data-role="header">
                    <h1>Index page</h1>
                </div>
    
                <div data-role="content">
    
                </div>
            </div>    
        </body>
    </html>   
    

    要对此进行测试,只需将 test.css 替换为您的自定义 CSS。

  2. 或者你应该最后初始化你的 CSS:

    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile.structure-1.3.2.min.css" />
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
    <link rel="stylesheet" href="themes/converterThemeFinald.min.css" />
    
于 2013-08-02T10:45:14.143 回答