ripple

Ripple emulator failing to emulate

守給你的承諾、 提交于 2020-01-17 01:48:47
问题 I have been using Ripple via Visual Studio 2015 to debug my Ionic app but it has stopped working for me. I get a message saying that it looks like the zombie apocalypse has started and two options - "Wait" or "Fire". The "Fire" is supposed to purge Ripple's settings. Neither works. I created a new app using the Ionic tabs template, and it fails to emulate too, so I don't think the problem is in my app. Any advice on how I can get Ripple working again? Edit I opened the Javascript console

Multi Device Hybrid Apps on debugging using Ripple Emulator does not open chrome

混江龙づ霸主 提交于 2020-01-15 08:28:33
问题 I have created a blank project using Visual Studio 2013 CTP version for Multi Device Hybrid App template. When I run the project for Android platform using Ripple Nexus Galaxy, it does not open the chrome. The output window displays a message that Deployment succeeded. But does not really open the browser window. Is there a configuration that I need to look at? 回答1: When this issue occurs, what works is to exit Visual Studio, kill any Chrome processes from the task manager, and reboot the

java.lang.IllegalStateException: Underflow in restore - more restores than saves

安稳与你 提交于 2020-01-11 05:25:07
问题 I am using rippleeffect library for my project. But in Android Nougat and Marshmallow , App crashes due to this library: compile 'com.github.traex.rippleeffect:library:1.3' The error message is: FATAL EXCEPTION: main Process: com.test.testapp, PID: 17713 java.lang.IllegalStateException: Underflow in restore - more restores than saves at android.graphics.Canvas.native_restore(Native Method) at android.graphics.Canvas.restore(Canvas.java:522) at com.andexert.library.RippleView.draw(RippleView

Ripple effect on TextView long click

微笑、不失礼 提交于 2020-01-06 02:53:05
问题 How do I get a TextView to ripple on long click? It ripples fine onClick but I need the ripple for onLongClick . 回答1: You can use Android Ripple Background final RippleBackground rippleBackground=(RippleBackground)findViewById(R.id.content); ImageView imageView=(ImageView)findViewById(R.id.centerImage); imageView.setOnLongClickListener(new View.OnLongClickListener() { @Override public boolean onLongClick(View v) { rippleBackground.startRippleAnimation(); return false; } }); 回答2: There are

Ripple requires API level 21 (current min is 11), android?

情到浓时终转凉″ 提交于 2020-01-03 09:31:43
问题 I have the below drawable <?xml version="1.0" encoding="utf-8"?> <ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="?android:colorControlHighlight" > <item> <shape android:shape="oval" > <solid android:color="?android:colorAccent" /> </shape> </item> And I am getting this error <ripple> requires API level 21 (current min is 11) How do I solve it? 回答1: You are using minsdk=11. You can't use this drawable with api<21. You have to use diffent versions of this

Ripple requires API level 21 (current min is 11), android?

白昼怎懂夜的黑 提交于 2020-01-03 09:30:23
问题 I have the below drawable <?xml version="1.0" encoding="utf-8"?> <ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="?android:colorControlHighlight" > <item> <shape android:shape="oval" > <solid android:color="?android:colorAccent" /> </shape> </item> And I am getting this error <ripple> requires API level 21 (current min is 11) How do I solve it? 回答1: You are using minsdk=11. You can't use this drawable with api<21. You have to use diffent versions of this

Visual Studio 2015 Cordova Tools - When Launching Ripple An error “scriptedsandbox64.exe has stopped working” Appears

半城伤御伤魂 提交于 2020-01-03 08:45:11
问题 Whenever I launch the ripple debugger, the process scriptedsandbox64.exe stops working and both the DOM explorer and the debugging tools show a huge refresh button, clicking on said button only results in the error appearing again. 回答1: The problem was that Internet Explorer version was 10, the cordova tools need version 11 to work properly, upgrading to v11 solves the issue. 回答2: I had the same issue and it works when installing IE11 来源: https://stackoverflow.com/questions/31973058/visual

not able to use facebook plugin with ripple emulator

三世轮回 提交于 2020-01-02 03:37:09
问题 I am trying to run facebook plugin 'SIMPLE example' using ripple emulator. I already included the facebook_js_sdk.js and cdv_plgin.js and cardova.js. config.xml is as follow. <plugin name="org.apache.cordova.facebook.Connect value="org.apache.cordova.facebook.ConnectPlugin"/> <gap:plugin name="FacebookConnect"> <param name="APP_ID" value="xxx" /> <param name="APP_NAME" value="app" /> </gap:plugin> I am getting error org.apache.cordova.facebook.Connect.getLoginStatus We seem to be missing some

Mousedown and Click conflict on Firefox

北城以北 提交于 2019-12-25 15:18:13
问题 I try to simulate the Paper Ripple Effect by using MAWButton plugin (https://github.com/yuhua-chen/MAWButton) and JQuery Color plugin (https://github.com/jquery/jquery-color) . Basically, the effect did not work on Firefox. Here is the Demo -> http://jsfiddle.net/2txszd46/4/ //https://github.com/yuhua-chen/MAWButton/blob/master/js/mawbutton.js (function($) { $.fn.ripple = function(options) { var settings = $.extend({ speed: 333, // ms transitionEnd: function() {} // callback when transition

Mousedown and Click conflict on Firefox

六眼飞鱼酱① 提交于 2019-12-25 15:17:32
问题 I try to simulate the Paper Ripple Effect by using MAWButton plugin (https://github.com/yuhua-chen/MAWButton) and JQuery Color plugin (https://github.com/jquery/jquery-color) . Basically, the effect did not work on Firefox. Here is the Demo -> http://jsfiddle.net/2txszd46/4/ //https://github.com/yuhua-chen/MAWButton/blob/master/js/mawbutton.js (function($) { $.fn.ripple = function(options) { var settings = $.extend({ speed: 333, // ms transitionEnd: function() {} // callback when transition