Xiaoqiang's HTML5 mobile development road (24) - PhoneGap Android development environment construction

黄舟
Release: 2017-02-04 14:06:04
Original
1388 people have browsed it

1. Download PhoneGap

Download address: http://phonegap.com/install/ I downloaded the latest PhoneGap 2.9.1

Unzip the downloaded PhoneGap, You can see that there is an example

Xiaoqiangs HTML5 mobile development road (24) - PhoneGap Android development environment construction

2. Build the environment

1. Referring to this example, we create our project and put it in the assets directory Create a new www directory under the res directory and create an xml directory under the res directory (directly copy the directory in the example)

Xiaoqiangs HTML5 mobile development road (24) - PhoneGap Android development environment construction

2. Add cordova-2.9.0.jar to the libs directory

Xiaoqiangs HTML5 mobile development road (24) - PhoneGap Android development environment construction

3. Modify MainActivity as follows

package com.example.hellomobile; import android.os.Bundle; //import android.app.Activity; import android.view.Menu; import org.apache.cordova.*; public class MainActivity extends DroidGap { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //setContentView(R.layout.activity_main); super.setIntegerProperty("splashscreen", R.drawable.splash); super.loadUrl("file:///android_asset/www/index.html", 2000); } }
Copy after login

4. Add permissions in AndroidMainfest.xml

               
Copy after login

5. Change the previous article Put the code in the www directory


3. Running results

Xiaoqiangs HTML5 mobile development road (24) - PhoneGap Android development environment construction

Source code download: http://download .csdn.NET/detail/lxq_xsyu/7178511

The above is the content of Xiaoqiang’s HTML5 mobile development road (24) - PhoneGap Android development environment construction. For more related content, please pay attention to the PHP Chinese website (www. php.cn)!



source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!