How to set keyboard background in Android
-
This might sound stupid, but I'm seriously a newbie at Android programming. I have looked this up on the Internet, but it looks like nobody ever had difficulties with this. I am making a soft keyboard for our school Android project. I intended to make my own background for this keyboard, but I couldn't figure out how to change the keyboard's background. I made a buttonbgselector.xml file in my drawable dir: <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/button" /> <item android:state_pressed="true" android:drawable="@drawable/buttonpressed" /> <item android:state_checkable="true" android:drawable="@drawable/button" /> <item android:state_checkable="true" android:state_pressed="true" android:drawable="@drawable/buttonpressed" /> <item android:state_checkable="true" android:state_checked="true" android:drawable="@drawable/button" /> <item android:state_checkable="true" android:state_checked="true" android:state_pressed="true" android:drawable="@drawable/buttonpressed" /> </selector> I tried setting the background here: @Override public View onCreateInputView() { mInputView = (KeyboardView) getLayoutInflater().inflate( R.layout.input, null); mInputView.setBackgroundResource(R.drawable.buttonbgselector); mInputView.setOnKeyboardActionListener(this); mInputView.setKeyboard(mQwertyKeyboard); return mInputView; } And the keys are still the same, nothing changed.
-
Answer:
There is a XML-Attribute called http://developer.android.com/reference/android/inputmethodservice/KeyboardView.html#attr_android%3akeyBackground. Just set this attribute to a drawable and it should be fine. Add this attrbute to the KeyboardView in input.xml: <KeyboardView android:keyBackground="@drawable/buttonbgselector" .../>
hoangbv15 at Stack Overflow Visit the source
Related Q & A:
- How To Set Cell Background Image In Iphone?Best solution by Stack Overflow
- How to set the alarm in android?Best solution by Android Enthusiasts
- How to hide keyboard in Android?Best solution by Stack Overflow
- How to set alarms in android?Best solution by Stack Overflow
- How to set a stationary background for my outgoing email?Best solution by eHow old
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.