[android-developers] Re: Convert from Byte array to Pdf format

2012-06-07 Thread RAJESH RAJARAM
Yes, Thank you JP... I got the solution...

//Creating new File in sdcard
byte[] bytes;
File createfile = new File(/sdcard/Androidrox/);
createfile.mkdirs();
File outputFile = new File(createfile, Sample.pdf);
FileOutputStream fos = new FileOutputStream(outputFile);


//Writing into the PDF File
strByte = (xpp.getText().toString());
bytes = Base64.decode(strByte.toString(),Base64.DEFAULT);//Converting 
Base64 to byte
String filepath = /sdcard/Androidrox/Sample.pdf;
OutputStream pdffos = new FileOutputStream(filepath);
pdffos.write(bytes);
pdffos.flush();
pdffos.close();

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Printing PDF in Android

2012-06-07 Thread RAJESH RAJARAM
Hi 
I have pdf document in my sdcard, I have to print the document from the 
android mobile. About this i didn't have any idea. Is it possible? This 
there any API in Android? and Advise and Idea's please.

Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Convert from Byte array to Pdf format

2012-06-06 Thread RAJESH RAJARAM
Convert the byte array data to the PDF Format. I'm getting the error in the 
line of

FileOutputStream pdffos = new FileOutputStream(filepath);

My code is like this

bytes = Base64.decode(temp.toString(),Base64.DEFAULT);
String filepath = /sdcard/test.pdf;
FileOutputStream pdffos = new FileOutputStream(filepath);
pdffos.write(bytes);

Give me some Idea to get the PDF File formate from the byte array. 
Note: I got the byte array from binary format.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Convert from Byte array to Pdf format

2012-06-06 Thread RAJESH RAJARAM
Hi
 
Ok..How i convert byte array to pdf format???

Rajesh Rajaram 

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Parsing XML Binary Data

2012-06-01 Thread RAJESH RAJARAM
Hi Developers,

Here, I have a query with parsing the xml file.

OUTPUTXM
  BINARYsome binary data/BINARY
  BINTYPEtype/BINTYPE
/OUTPUTXM

In the above xml inside the tag BINARYDATA/BINARYDATA contains some 
binary data of converted pdf file. Now how can i retrive the same pdf 
format by parsing xml and i don't know its possible or not. 
Help me!!!

Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Convert the binary to pdf file on Android?

2012-06-01 Thread RAJESH RAJARAM
I think its possible in Iphone..

http://stackoverflow.com/questions/8133137/how-to-convert-the-binary-to-pdf-file-on-iphone
 

I want to know about android...

Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Problem in IMEI ID

2012-05-31 Thread RAJESH RAJARAM
Which type of Device have the IMEI id 17 digits?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: XML parseing working in android 2.2 but not in android 4.0

2012-05-31 Thread RAJESH RAJARAM
Hi,
But actually ur saying that to use the Pull Parser right? I can't use pull 
parser because my responds Xml have change by time by time. So, using DOM 
parser you have any Idea??? That *Document doc = db.parse(inStream); *this 
the line i'm getting the error.

Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: XML parseing working in android 2.2 but not in android 4.0

2012-05-31 Thread RAJESH RAJARAM
Yes finally got... Here the solution...

http://androidbridge.blogspot.in/2012/04/getelementsbytagname-returns-null-in.html
 

Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: XML parseing working in android 2.2 but not in android 4.0

2012-05-28 Thread RAJESH RAJARAM

Hi  Bhaumik Thaker,

I too suffered by the same error but for me its running upto 3.0... Only 
4.0 making the problem. If u got the solution please post it here. i'm 
searching the solution last 5 days :(*
*

Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Error in android 4.0 use Dom Parser

2012-05-25 Thread RAJESH RAJARAM
Hi

My Problem is Dom Parser is not working in Android 4.0 but it's working on 
2.2,2.3,3.0 if i run the project in my 4.0 emulator its not executing after 
the 

Document doc = db.parse(inStream);

Help me

Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Android Market not showing my app in Tablet but showing in smartphones

2012-05-25 Thread RAJESH RAJARAM


 Hi jim

I tried the android:xlarge.. actually my project is in 2.2, so it not 
supported the xlarge but now i changed to 2.3 its support now. And now the 
problem is when i execute the project in 3.0 or 4.0 emulator its not 
calling the web service. But its working fine in 2.2 and 2.3 emulator. 
I don't know have any idea. Help me.

Rajesh Rajaram  

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Android Market not showing my app in Tablet but showing in smartphones

2012-05-23 Thread RAJESH RAJARAM
Hi

Recently i posted my android application in the android market place
when i search my application in the smartphone its showing the app and
downloadable but when i search it in the Tablet its not showing. when
i try to download it the PC it saying that its not compatible with
your device. what i have to do to show my app in tablet as
downloadable. please Help me.

Here is my manifest Code:

?xml version=1.0 encoding=utf-8?
manifest xmlns:android=http://schemas.android.com/apk/res/android;
package=com.example
android:versionCode=1
android:versionName=1.0 

uses-permission android:name=android.permission.INTERNET /
uses-permission
android:name=android.permission.ACCESS_NETWORK_STATE /
uses-permission
android:name=android.permission.CHANGE_NETWORK_STATE /
uses-permission
android:name=android.permission.ACCESS_WIFI_STATE /
uses-permission
android:name=android.permission.ACCESS_NETWORK_STATE /
uses-permission
android:name=android.permission.ACCESS_COARSE_LOCATION /
uses-permission
android:name=android.permission.ACCES_MOCK_LOCATION /

supports-screens
android:anyDensity=true
android:largeScreens=true
android:normalScreens=true
android:resizeable=true
android:smallScreens=true /

uses-sdk
android:minSdkVersion=8
android:targetSdkVersion=8 /

application
android:icon=@drawable/mainicon
android:label=@string/app_name
activity
android:name=.Main
android:label=@string/app_name
android:theme=@android:style/Theme.NoTitleBar 
intent-filter
action android:name=android.intent.action.MAIN /

category
android:name=android.intent.category.LAUNCHER /
/intent-filter
/activity
activity android:name=.Mainb 
/activity
activity
android:name=Pro
android:theme=@android:style/Theme.NoTitleBar 
/activity
activity
android:name=.Mainc
android:theme=@android:style/Theme.NoTitleBar 
/activity
activity android:name=Bo 
/activity
activity android:name=So 
/activity
activity
android:name=Maind
android:theme=@android:style/Theme.NoTitleBar 
/activity
activity
android:name=Maine
android:theme=@android:style/Theme.NoTitleBar 
/activity
/application

/manifest

Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Android Market not showing my app in Tablet but showing in smartphones

2012-05-23 Thread RAJESH RAJARAM


 Thank you jim
 Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Android Emulator not connecting to internet even though there is internet connection on computer

2012-04-13 Thread RAJESH RAJARAM
Hi,

 Android Emulator not connecting to internet even though there is
internet connection on computer.
I done all the things that
1. setting-wirelesssettings--proxy and port.
But still i have the same problem. last one week i'm searching for the
solution can plz anyone solve my problem

Thanks in advance
--
Regards,

Rajesh Rajaram

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en