Questions tagged [custom-keyword]

10 questions
5
votes
0 answers

Android Studio custom Keyword appearance coloring

I use the Log.i(String, String) method a lot. I would like to have that method, and only that method, have a specific color font so I can quickly identify it. I looked in Preferences > Editor > Colors and Fonts > Custom and found a screen listing…
Glen Pierce
  • 4,401
  • 5
  • 31
  • 50
5
votes
2 answers

input connection-how to delete selected text?

I made a custom keyboard for android. When I press backspace button of my keyboard I use getCurrentInputConnection().deleteSurroundingText(1, 0); to delete one letter from the input field. But when I select some text and then press the backspace…
3
votes
1 answer

define a custom keyword in ios programmatically

I want to create a custom keyword programmatically in iphone. For ex. NSLog prints the log in the console. There are my many frameworks that use their own logs (custom logs)like Aphlogs etc. I want to define my own keyword such as MYLogs such that…
Warrior
  • 39,156
  • 44
  • 139
  • 214
1
vote
0 answers

I'd like to create an unescaping bookmarklet that works as a Mozilla custom keyword

Here are the specifications for this task: A bookmarklet will be created i.e. a browser bookmark that contains JavaScript. It will be called from a Mozilla custom keyword i.e. it will be called via a short string followed by a query string in the…
1
vote
1 answer

Android Custom keyboard

I creating custom keyboard using this link "http://www.fampennings.nl/maarten/android/09keyboard/index.htm" but i want to include so many word into this keyboard,above link keyboard looks like follwing : i have three xml file : 1) hexkbd : have A…
Nirav Mehta
  • 1,715
  • 4
  • 23
  • 42
1
vote
3 answers

DONE key doesn't work on custom keyboard

in my code there is a all keys work well except DONE so tell me suggestion of regarding to DONE keys. MY CODE is below: my mainActivity code is below package nl.fampennings.keyboard; import android.app.Activity; import android.os.Bundle; import…
user3567425
  • 11
  • 1
  • 3
1
vote
1 answer

How to Search in Browser with Custom keyboard?

I recently Developed a Applicaiton.Now i want to integrate Google and Youtube in this Applicaton like This Application.After doing a lot of search finally i think there are two methods through which we can integrate google and youtube for…
NSCool
  • 229
  • 1
  • 12
0
votes
0 answers

What should I give in input for Scenario and scenario param and param type in custom keyword in katalon

I am trying to create a custom keyword for cucumber hooks . @Keyword public void beforeScenario(Scenario scenario) { LOG.logInfo(scenario.getName()) ....remaining code } I am getting Null pointer exception error and the input is null for…
devi
  • 1
  • 1
0
votes
3 answers

Is there a way to use a different character than [#] to comment your code?

In R / RStudio, a "comment" is defined by the # character. I would like to "comment" using ' instead of # in R. Is it possible?
-1
votes
1 answer

EditText isn't getting clear with CustomKeyboard after press clear button

This is my custom keyboard class.In keybord i have one key clear when i click on clear key my register editetext should clear but editetx value has been cleared when i debug but in UI edit text is not updating is showing same old value. I checked on…