我没有在mobilegap android的手机中获得ThemeRoller的自定义UI?

时间:2013-08-02 08:47:08

标签: jquery jquery-mobile cordova themeroller

我有自定义主题已下载主题,添加为参考但我的移动用户界面没有显示我自定义主题:

以下是自定义主题: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之后的屏幕拍摄: screen shots

1 个答案:

答案 0 :(得分:1)

你的问题是,你是盲目跟随jQuery Mobile主题滚动教程如何应用新主题。你有两个新的主题样本A和B.在初始化完整的jQuery Mobile CSS之前你还要包含它们,它们还有原始的A和B样本。因为最初初始化了完整的jQuery Mobile CSS,所以CSS将应用于您的自定义CSS。

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

  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" />