Android - How To Create Xml's Id?
I'm developing a dynamic keyboard application using soft keyboard sample. My application changes layout. For example I have a keyboard(has one key) then I set up the app and I can
Solution 1:
It can be defined in ids.xml
or any custom file like constants.xml
inside your res\values
folder.
Examples:
<resources><itemtype="id"name="keyboard" /></resources>
and can be accessed in the code as following:
R.id.keyboard
Solution 2:
You can define ids using an ids.xml
file in your res/values directory. Here's an example:
<resources><itemtype="id"name="my_keyboard" /></resources>
In code, you would set the id like so:
keyboardView.setId( R.id.my_keyboard );
Solution 3:
XML files are compiled (binary XML) and thus you don't create them at runtime.
If you want to change your keyboard layout dynamically, you'll do that programmatically rather than in XML.
Post a Comment for "Android - How To Create Xml's Id?"