私はこの問題を抱えています:サンプルアンドロイド2.2(API 8)プロジェクトでこのスクリプトをテストしています。
デバイスまたはエミュレーターでアプリを実行すると、WebView にビデオが表示されますが、タップして再生すると、アプリは再生しません。ビデオはすべて黒くなります。
スクリプトをサーバーの .html ファイルに入れ、それをネイティブ ブラウザから同じスマートフォンで開くと、ビデオがロードされて再生可能になります!!!
スクリプトは、html5 タグ "video" を動的に作成する必要がある jwEmbedder を使用することを知っています。
私は問題を解決するために多くの試みをしましたが、今は何をすべきかわかりません。私のWebViewには、ビデオを再生するときにネイティブビデオアプリを起動する権限または機能がないと思います...
SenapeLuz.java (メイン アクティビティ)
public class SenapeLuz extends Activity {
private WebView mWebView;
final Activity activity = this;
// private Button b;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_senape_luz);
mWebView = (WebView) findViewById(R.id.webView1);
mWebView.getSettings().setPluginsEnabled(true);
mWebView.getSettings().setPluginState(PluginState.ON);
mWebView.getSettings().setSupportMultipleWindows(true);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
mWebView.getSettings().setDomStorageEnabled(true);
mWebView.setWebChromeClient(new WebChromeClient());
mWebView.loadUrl("file:///android_asset/Senape.html");
}
}
Senape.html (スクリプト)
<script type="text/javascript" src="http://platform.senape.tv/widget/video.action?v=1.0&key=ZD9L6ZHH5B60&rid=I95EE9HL0LNP"></script>
マニフェスト
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.prove.senape"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".SenapeLuz"
android:label="@string/title_activity_senape_luz" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
誰かが私を助けることができますか?