Questions tagged [pending-transition]
18 questions
97
votes
4 answers
How to perform a fade animation on Activity transition?
I am codifiying a transition effect between my logo activity and my Main activity, but I have the problem that before vanish the activity move to top:

MarcForn
- 3,321
- 7
- 25
- 39
7
votes
2 answers
How to enable "Transition Animation Scale" in "Developer Options" programmatically ?
I have some animation transitions for my activities. So when an activity starts, it comes up with some fade animations. Here is the code:
Intent intent = new Intent(this, NextActivity.class);
startActivity(intent);
overridePendingTransition…

Milad Faridnia
- 9,113
- 13
- 65
- 78
2
votes
0 answers
Smart Contract Deployment to MainNet Pending Status
I have my own Ehereum cient node running OpenEthereum 3.0.1. I am using Truffle Suite to deploy my smart contract to MainNet, using my node as RPC_URL. The Truffle migration command issued the following:
1_initial_migration.js
Deploying…

Kevin Melberger
- 21
- 1
2
votes
2 answers
Javascript: How to check if async operation is still pending / In progress?
I would like to know if it is somehow possible to check if an asynchronous operation in Javascript is still pending..
Because I am doing a database request on calling a specific URL... While the db call is still in progress, I want to stop any other…

MMMM
- 3,320
- 8
- 43
- 80
1
vote
0 answers
Etherscan status difference between pending and indexing
I've been checking block status and then I got wonder that I can't see pending in RinkebyScan but indexing.
The reason I check this is because I want to speed up my tx so I need to send new tx with higher gas when tx I sent is pending. But it always…

mynameisConan
- 19
- 2
1
vote
0 answers
In Woo I need real stock levels to decrease when order is created and don't decrease until order cancel
I need a product stock to decrease immediately on order creation and it should not increase unless the order is cancelled (it should also not decrease a second time upon payment successful or any other switch).
My problem is I want to use my…

Cranmoot
- 51
- 1
- 6
1
vote
1 answer
how to run a task multiple time on jenkins?
I have a task (task #1) to which I give parameters, and it is called by another job.
The calling job call (task #1) 3 times, and I'd like the 3 calls to run simultaneously. Is it because I run the 3 on the same machine that it is not possible?
Else…

Cher
- 2,789
- 10
- 37
- 64
1
vote
2 answers
Android: How to fill GridView programatically before starting transition?
I have an MainActivity A, from which the user can select different items which are displayed in Activity B in a GridView. Between those Activities I have a Sliding-Transistion (Activity A slides out to the left, Activity B slides in from right)
My…

longi
- 11,104
- 10
- 55
- 89
0
votes
0 answers
USDT Transaction Dropped & Replaced
While trying to send USDT to a wallet address, my transaction got dropped and replaced. I assumed that the transaction would go through if I just wait, but it seems that it got replaced and sent to a 0x00000000eddb52AAA642C5ce030A0405f4Db2A87. This…

fwara07
- 45
- 1
- 8
0
votes
1 answer
How can I get pending transaction of contract address using web3.py?
I want to get pending transaction of a contract address, I have tried many ways but didn't work
method 1: this seems to be good at sorting pending transaction but I can't get any transaction from my address, I don't know why. Please help me
def…

Mike
- 53
- 1
- 8
0
votes
0 answers
Node Express asynchronous db request: Display pending message?
Is it somehow possible to display a status message while fetching a database request from some API with Node.js and Express.js? The db request is taking some minutes... I'd like to display a status message like "pending request.." in the browser as…

MMMM
- 3,320
- 8
- 43
- 80
0
votes
0 answers
PayPal is accepting payments with no found cards
I just integrated REST API apps, but I tested to make a purchase, my debit card had no funds. Still that, Paypal redirect to me to the thank you Page. Also, the report of this transaction not appear in my dashboard. My developer says that there is…
0
votes
1 answer
Ajax is not connecting to php server because of pending Network situation
I have an unknown situation that AJAX request does not reach to the PHP server.
There is no error code in the Chrome browser, but it's not reaching the PHP GET method.
In my code
function GetLectureData(SID){
$.ajax({
url: "test.php",
…

Hyung Lak Kim
- 21
- 4
0
votes
2 answers
Paypal pending IPN message not being completed
I was working on a shopping cart in paypal with php, but when paypal is sending payment_status = Pending, I never recieve a callback with completed even though the payment is saying complete on paypal itself (tested on sandbox and live environment).…

crasyboy42
- 57
- 2
- 7
0
votes
1 answer
How to get pending view controller from method?
How can I get the pending view controller value from this method?
-(void)pageViewController:(UIPageViewController *)pageViewController willTransitionToViewControllers:(NSArray *)pendingViewControllers {
}
What is the code I can use to get the…

Cool Kat Studios
- 41
- 8