Questions tagged [extra]

Terminal emulation for mainframes. IBM System z (Mainframe), IBM System i (AS/400), UNIX/Linux/OpenVMS (VT), and HP NonStop/Tandem systems.

138 questions
2
votes
5 answers

How to pass string between two activities

I have two activities A and B, and from activity A, I click on a button that opens a dialog box which contains a form consisting of two edit text fields and a button(the button in the dialog box is used to start activity B). So, my question is: how…
Ovidiu Birgu
  • 429
  • 2
  • 6
  • 24
2
votes
1 answer

How to check if an activity is associated with a metadata tag or not?

I've an activity which has a meta data tag associated with it.
Tom Taylor
  • 2,378
  • 1
  • 27
  • 48
2
votes
0 answers

Warning: Observed package id 'extras;intel;Hardware_Accelerated_Execution_Manager' in inconsistent location

my emulator stopped working and it just displayed black screen and when i tried with an external device app keeps crashing and it stops and close and then there was a haxm installer update i tried it and this warning showed up an still it is not…
bunty785
  • 129
  • 1
  • 7
2
votes
1 answer

What does the extra 0 added to the LSB in Modified Booth Algorithm do?

I have tried to find a answer to this question but the only other thread about it didn't give as much details as I wished for. Why is the extra 0 to the right of the LSB needed in Modified Booth Algorithm? What exactly does it do and why does it…
Laha
  • 39
  • 4
2
votes
1 answer

Vim Map extra keys in Razer keyboard

I just bought a Razer mechanical keyboard with extra keys such as M1, M2 to M5. I'm wondering whether Vim can map those extra keys? It would be appreciated if anyone can give me some suggestions on how to do it.
Aron Lee
  • 483
  • 4
  • 7
2
votes
1 answer

Extra colon ':' added at end of JSON, in header form data (it is a XHR)

Using JMeter to record scripts. Port : 8080 Chrome : Proxy Server settings done on port 8080 i am getting this error in Developer tool 500 (Additional text encountered after finished reading JSON content: =. Path '', line 1, position 4083.) When i…
Saksham
  • 31
  • 2
2
votes
3 answers

Removing spaces but leaving line breaks JS or jQuery in a textarea

I want to remove extra spaces at the beginning and the end of lines, but keep the line breaks, this is what I tried. function removeSpaces(string) { return string.split(' ').join(''); }
2
votes
1 answer

HTML5 - Extra white space at the bottom of div

I am working on Windows Phone 8 Mobile application which uses IE10 browser internally. I am trying to remove the blank white space from a child div, which is appearing if the previously opened child div's content is more than the currently open…
Pravesh Pesswani
  • 391
  • 5
  • 14
2
votes
1 answer

Extras seem to be lost onResume()

I have an Intent which gets information from my database through an long Extra. It also sets the title of the Activity through a String Extra. Now when I first start the Activity, everything shows up perfectly. However I have another Activity which…
scarhand
  • 4,069
  • 23
  • 60
  • 91
2
votes
2 answers

getting an extra number when replacing a number following a string using sed in linux

This has been a real problem for me with sed. I have an original input file as following. R shthk 0.900000 R mue 0.054100 …
hamad khan
  • 369
  • 1
  • 5
  • 14
2
votes
0 answers

extra white space to the right in my mobile website

My mobile site, http://hoagfrm.orangegrids.com/index.php?id=51, is developed with 320px size. Still i can see an extra white space to the right in an iPhone. Can someone hep to figure this out please
saj
  • 21
  • 1
2
votes
2 answers

Android : How to launch Pending intent from another activity with extras?

I am facing some problem with pending intents. I have set some Pending Intents using Notification Manager. These notification launch an activity when user click on them. I put some extras with Intent used in pending intent. This works OK with…
Vipul Purohit
  • 9,677
  • 6
  • 50
  • 76
1
vote
1 answer

Android: Update bean information between activity

I'm new on Android developing. I'm trying to manage gps location between activity. In particular I have created a thread, started with main activity, that update after a few interval the gps position and save the new position into a shared…
Simone
  • 155
  • 2
  • 7
1
vote
1 answer

Add Extra Fee on Product Page Using Hook [Woocommerce]

add_filter( 'woocommerce_get_price_html', 'product_page_price_display', 9999, 2 ); function product_page_price_display( $price_html, $product ) { $orig_price = wc_get_price_to_display( $product ); $price_html = wc_price( $orig_price + 10 ); …
1
vote
1 answer

intent.getStringExtra is always "null"

This is how the string is added to intent.putExtra: final ListView listView = findViewById(R.id.userListView); final ArrayList usernames = new ArrayList<>(); listView.setOnItemClickListener(new AdapterView.OnItemClickListener()…
1 2
3
9 10