我制作了一个用于智能手表的Android应用,以便全屏显示HTML5网页,该网页交替显示实时时钟和带有进度条的事件,该事件仍将运行多长时间(可以在html5页面上看到www.janvangalen.nl。 但是,智能手表会退回到睡眠模式(这是有意的),但是我无法让该应用继续在后台运行。振动(通知新活动)不起作用,激活手表显示时钟仍在运行,但是活动仍然是睡觉时的活动。
我已经在Android Studio中进行了开发,以下文件是我的应用程序的基础。
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="nl.janvangalen.www.imagewatch">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".FullscreenActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/FullscreenTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
acitvity.fullscreen.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0099cc"
tools:context=".FullscreenActivity">
<!-- The primary full-screen view. This can be replaced with whatever view
is needed to present your content, e.g. VideoView, SurfaceView,
TextureView, etc. -->
<!-- This FrameLayout insets its children based on system windows using
android:fitsSystemWindows. -->
<WebView
android:id="@+id/activity_fullscreen_webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
最后:
**FullscreenActivity.java**
package nl.janvangalen.www.imagewatch;
import android.annotation.SuppressLint;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.os.Handler;
import android.view.MotionEvent;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.webkit.WebSettings;
import android.webkit.WebView;
public class FullscreenActivity extends AppCompatActivity {
private WebView mWebView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
if (getSupportActionBar() != null)
getSupportActionBar().hide();
//Remove notification bar
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_fullscreen);
mWebView = (WebView) findViewById(R.id.activity_fullscreen_webview);
// Enable Javascript
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
mWebView.loadUrl("https://www.janvangalen.nl");
}
}
我还找到了使应用程序在后台运行的方法,并创建了一个新的.java(第二个公共类)。但是,在下面的代码中,我不知道要输入什么,因此无法正常工作。
package nl.janvangalen.www.smartwatch;
import android.app.IntentService;
import android.content.Intent;
import android.webkit.WebSettings;
import android.webkit.WebView;
import nl.janvangalen.www.imagewatch.R;
public class RSSPullService extends IntentService {
@Override
protected void onHandleIntent(Intent workIntent) {
// Gets data from the incoming Intent
String dataString = workIntent.getDataString();
// ...
// Do work here, based on the contents of dataString
}
}
由于全屏脚本中的工作已经完成,因此需要在此处完成什么工作。
有人可以帮我吗?
答案 0 :(得分:0)
已解决。通过使用前景代替背景!