Questions tagged [binary-xml]
17 questions
8
votes
6 answers
Error inflating class ImageButton
I have an app which has fragment and image button on that. The problem is it's working on and above 5.0 but not below 5.0. The min sdk version is 17.
Not getting what's wrong here. I am getting 2 exceptions.
One is RuntimeException for image…

Sid
- 2,792
- 9
- 55
- 111
5
votes
0 answers
Compact Binary encoding of XML Infoset using MC-NBFX?
Microsoft implemented their own compact binary XML encoding (MC-NBFX) which is an option within WCF for conveying XML Infosets (e.g. SOAP requests and responses) more efficiently than the standard XML text encoding(s).
I would like to use the same…

redcalx
- 8,177
- 4
- 56
- 105
4
votes
1 answer
Is there an function to retrieve the binary XML from oracle result set
I am trying to extract the data from XMLTYPE COLUMN "ATTRIBUTE_XML2" STORE AS SECUREFILE BINARY XML from an Oracle 12C database.
I am using this select query in my code:
select xmlserialize(document a.xmlrecord as clob) as xmlrecord from…

Karthick88it
- 601
- 2
- 12
- 28
4
votes
1 answer
Writing compact xml with XmlDictionaryWriter.CreateBinaryWriter and a XmlDictionary
I want to write an xml document to disk in a compact format. To this end, I use the net framework method XmlDictionaryWriter.CreateBinaryWriter(Stream stream,IXmlDictionary dictionary)
This method writes a custom compact binary xml representation,…

HugoRune
- 13,157
- 7
- 69
- 144
4
votes
1 answer
Android LayoutInflater: inflate Binary layout xml
I am trying to dynamically inflate an layout xml file.
The file should later come from a server so the Android app (client) will download it and load the layout.
I know that its impossible to do this with a plain layout file because for performance…

Alex
- 459
- 3
- 14
1
vote
0 answers
What is better for Index performance? Structure of XML Elements or Attributes?
I am using Oracle Binary XML and will be creating XML Index. What choose structure of the XML file for better search performance? XML Elements or Attributes? For example:
a) Attributes style
Valve…

Nikolay Grigoryev
- 55
- 5
0
votes
0 answers
Oracle 12.2 binary XML and SAX Parser
I am using SAX Parser to parse the xml type data.
Currently my Java program is reading the data(XMLTYPE) from oracle database(11.2), without writing the data to file, the inputs are passed to sax parser as Input Source.
while (orset.next())…

Karthick88it
- 601
- 2
- 12
- 28
0
votes
1 answer
Android: error with CircularProgressButton
The CircularProgressButton give me error, and I don't know how to fix it.
This is the code:
xml code:

KKKKK
- 273
- 2
- 18
0
votes
1 answer
Inflation Exception on clicking an icon
I am trying to put display a popup menu every time a user clicks on the button in the bottom right corner of a card, but every time I click on this button, I get this error :
android.view.InflateException: Binary XML file line #0: Failed to…

Pritom Mazumdar
- 325
- 5
- 20
0
votes
1 answer
Inflate Exception Inside Fragment Class
I am working on a project that requires fragments. Whenever I test run the project, in my fragment class, I get an exception pointing to the inflaterline of my oncreateview method, like shown below.
Process: com.example.joey.maranathahealthblog,…

Joseph Joey
- 1
- 3
0
votes
0 answers
Inflater working on emulator, but not on real device
I'm fairly new to android app development, I'm doing it now for my project on faculty in Android Studio (using API 23). I'll go straight to the point: Application that I'm developing works (is not showing any fatal errors) on emulator when I run it,…

Dusan Janosevic
- 1
- 2
0
votes
0 answers
Oracle 12g XmlType store as Binary XML (select issue)
I am trying to select XML from DB Oracle12g. XML is stored in the table (XMLType store as binary XML) and I am not able to create Select query with where-condition. My problem is that query doesn't return any record. I am using Oracle SQL Developer…

Radek Petruška
- 1
- 1
0
votes
2 answers
Binary XML file -Error inflating class fragment in Google Map V2 (Android Studio)
I am trying to integrate Google Map V2 in my project in android studio.I added google play services as dependencies in build.gradle file as below :
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile…

fyasir
- 2,924
- 2
- 23
- 36
0
votes
0 answers
Can WcfTestClient.exe send content type 'application/soap+msbin1' request?
I'm trying to test a Silverlight WCF interface, by WcfTestClient.exe. However, I got below message from server:
HTTP/1.1 415 Cannot process the message because the content type 'text/xml; charset=utf-8' was not the expected type…

Fang Dong
- 1
- 1
0
votes
3 answers
My code works on small devices but its not working on large screen devices above 5' inch
My code works on small devices but it doesn't work on large screen devices above 5 inches.
The layout folders structure is the…

AndroidDevM10
- 141
- 2
- 12