Question

I have developed many keyboard skins (better keyboard format) but I am having trouble making a go keyboard in eclipse. I am a designer not much of a programmer so I'm very clueless when it comes to this area.

The errors I am getting have to deal with the public.xml and all of the errors are linked to strings. I have decompiled a GO Keyboard theme and placed everything back into the Android Project into their correct places but I am still getting these errors (I know this probably not the best way to do this, however it's really the only way I know to get a quick template so I can change all the images to my liking and play around with some of the coding).

I can't find a downloadable template online or anything so I'm thinking I'm going to have to make this in eclipse. If someone can please point me in the right direction for this I would really appreciate it. Here's the public.xml I have

Was it helpful?

Solution

Figured out what the problem was. The theme requires a specific package name which I wasn't using!

OTHER TIPS

I can give you an answer to one error: the "Multiple substitution specified..." message is caused by a string with more than one % format specifier without using positional indexing. For example, you might have this (incorrect) message template:

<string name="error1">Error code %d when accessing file %s</string>

The correct way to write it would be to specify which argument index goes with each conversion specifier:

<string name="error1">Error code %$1$d when accessing file %$2$s</string>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top