Android :: Send Attachment Of Package - OpenGL ES Confusion
Aug 24, 2009
I am new to Android and OpenGL world. I've created a new app using openGL ES. (I am not able to find a option to send attachment of package to group, so that you can see my code and suggest me where i made a mistake). Android Simulator LCD size is 320 x 455 and i've set same size for OpenGL Viewport. But For creating visible rectangle i've to use vertices, which are of very high value.
int vertices[] = { -20000,-20000,0,
-20000,20000,0,
20000,20000,0,
20000,-20000,0
};
View 3 Replies
Sep 10, 2009
how to send a zip file as an attachment of an email?
Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_EMAIL, mailto); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Sample"); sendIntent.setType("application/zip"); sendIntent.putExtra(Intent.EXTRA_STREAM,pathtozipfile);
startActivity(Intent.createChooser(sendIntent,"send the mail"));
I tried about snippet.But didnt work. Anybody tried sending zip file attachments?
View 2 Replies
View Related
Aug 3, 2010
Im using G-mail so how do I send and attachment like a doc?
View 2 Replies
View Related
Nov 20, 2010
I cannot send an email with an attachment using the Gmail app on this phone. I tried to send three different photographs to three different email addresses and it failed every time. Emails without attachments go perfectly every time.
View 6 Replies
View Related
Sep 2, 2010
I am confused with two below method
1.) onItemClick(AdapterView<?> arg0, View view, int position,long id) 2.) onListItemClick(ListView l, View v, int position, long id)
View 6 Replies
View Related
Jan 27, 2010
I'm new to the forums. I just got my Droid in the mail today. I bought the Pure Calendar Grid widget, however I'm having problems figuring it out. Every time I click on a date it brings up the settings. Is there not a way to make it pop up with the details from that day?
View 10 Replies
View Related
Dec 11, 2009
Is there a general guideline for application developers about when to disable haptic responses? I know there are ways to enable/disable long-press haptics, but if an application was created to use haptic feedback for other events are there guidelines that application developers should follow? For example, if the user was to go into Settings->Sound & display -> Haptic and set that to OFF, should all applications refer to this setting as a rule of thumb?
From and end user point of view, I would like to have global control of haptic feedback especially if I find it to be annoying. I have seen several postings in the android forums looking for a "global override" to haptic responses. Ultimately, I think it is a question of should each application provide a menu to enable/disable haptic support, or should this be more of a global Setting for the device.
I personally feel applications should refer to the global setting, but would like to get feedback from other developers about this. Reference postings I was referring to: http://www.droidforums.net/forum/droid-general-discussions/6812-hapti... http://androidforums.com/samsung-moment/13633-how-do-you-disable-vibr.
View 2 Replies
View Related
Jan 11, 2010
I have a start activity page for my game (which is the root activity for my app) that just lists "Play", "Help", and "About" TextViews on the screen. Each TextView has a click listener which start the appropriate Activity for each. The GameActivity (started with explicit intent from clicking "Play") has onSaveInstanceState implemented to save state of the game. Its onCreate checks for non- null Bundle to restore this state. My problem is this:
1. Turn on Phone/Emulator 2. start my game with icon in launcher 3. Start page is displayed 4. click "Play" to start my GameActivity 5. play game for a few seconds 6. click home 7. state is saved (proven with debugger calling onSaveInstanceState) 8. start my game with the icon in launcher 9. start page is displayed
I was under the impression that by clicking the app icon from the launcher that my existing task activity stack would be restored with my GameActivity being on top and its onCreate being called for me to restore the state I saved. Instead I am getting a brand new instance of my start page. Also, if I long press home and choose my running game icon, then my game comes back exactly as I left it. However, this apparently is NOT using my onCreate restore state logic as onCreate is never called.
All of the documentation seems to say that the entire stack of activities will be restored when clicking the application icon from the launcher, but I just get a fresh instance. What might I be doing wrong?
View 2 Replies
View Related
Feb 25, 2009
Single Threaded OpenGL game ! (check bottom, you can download and use the helper class) Lighting disabled ! Depth Buffer disabled ! Culling enabled ! Textures disabled !
Just 176 integers (x,y values only) making 88 vertexes along with 132 index numbers making "44 triangles only"
Framerates I get is
with GL_BLENDING disabled - 145 fps approx only! enabled - 110 fps approx only!
I have the screenshot of exact code in the draw function here.. just 2 damn lines ! I have hidden only the comments.. click here to see it http://prasna991.googlepages.com/drawframe.png
variable details in the 2 lines of code =========================== ipts = 176 elements (only x and y for each vertex) totallinetriangles * 3 = 176 lineindexes = 132 elements - type "short"
Here is the screenshot of output drawing and how it will look like http://prasna991.googlepages.com/screen.png
OpenGL single threaded Initialization Helper ================================ Here is my OpenGL helper class.. makes the OpenGL initialization for newbies a cakewalk http://prasna991.googlepages.com/OpenGLHelperclass.txt
I tested by rendering on the touch event only.. frame rate drops only when u touch and drag and here I have just tested by tapping and releasing gently on the emulator and on the device
Is this the device limitations ? So graphics is actually a lot lot lot slower than on iPhone ?
View 8 Replies
View Related
Jul 24, 2010
I would like to be able to use the OpenGL API from both Java and C (via NDK).
In Java, there is a GL object passed, which has all GL methods on it.
In C, you just talk to the native library.
In a single onDrawFrame callback (for which Java is passed a GL), can I use methods on the GL object, and also call NDK methods which access the openGL library?
In other words, is the GL object just a wrapper for the same instance of the native library?
View 3 Replies
View Related
Feb 12, 2009
i work on custom Application Manager and try to get the disk usage of installed package. So PackageManager.getpackageSizeInfo was removed from SDK on 0.9->1.0 update android.content.pm. PackageStats(String pkgName)(cacheSize, codeSize, dataSize) returns always "0" Size of phys. file (java.io.File) in "/data/app" seems wrong/not completely. Has anybody any solution to get the total disc space used by an installed package?
View 4 Replies
View Related
Oct 7, 2010
I'm attempting to override an Android View class to tweak the functionality just slightly. But I need to modify a field that does not have a setter method. I've placed the subclass in a package called android.widget. Why can't I access any of the package-private member fields? I notice that the compiler says they "cannot be resolved," rather than not being accessible. Does this have something to do with how Android.jar is built?
View 2 Replies
View Related
Sep 8, 2009
Can I send an email without invoking any activity (with Send/SendTo action)? Just compose a mail and send to recipient from my application.
View 7 Replies
View Related
Aug 8, 2010
I have the Samsung Captivate and I'm totally new. I'm having problems opening my email attachments (pdf and xls). I found this thread, but I'm still confused. I can't seem to find "open unknown apps" nor "Unknown Sources" in my Settings.
View 5 Replies
View Related
Jan 10, 2010
I want to open a specific type of file that my app can already send over email as an attachment. I need to be able to have the android email app choose my app to download or open that specific file type. I can't figure out how to set up an intent filter that would let me do that though. Anyone know how this is done?
View 1 Replies
View Related
Apr 1, 2010
I never got this to work on a real device, got the email but no attachment, also when installing K9 on a emulator and then sending the email I see the mail in the outbox with a size of 0 bytes:
public static void sendFile(Context context) { File exportDir = new File(Environment.getExternalStorageDirectory(), "mydir"); if (!exportDir.exists()) { exportDir.mkdirs(); } String csvFile = exportDir + "/file.csv"; File file = new File(csvFile); if(file.exists()) { Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "CSV file"); sendIntent.setType("text/csv"); //sendIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); //sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + Environment.getExternalStorageDirectory() + "/mydir/file.csv")); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/ mydir/file.csv")); context.startActivity(Intent.createChooser(sendIntent, "Send CSV file")); } else { Util.displayToast(context, R.string.no_csv_file); } }
View 11 Replies
View Related
Feb 24, 2010
Is there anyway to read data from an attachment through the USB port on an Android device? In particular, an EKG. Most the work can be done by the hardware of the device to simplify the output to a single number, a voltage reading. If its not possible, what about modifying an accessory that can already communicate with an android device? Thinking of devices that attach to android phones, what about sending the data as an audio signal to be read as the microphone from a headset and then analyzing the audio signal to convert it to a number that can be used to display a value. how to make this work?
View 5 Replies
View Related
Aug 7, 2009
I am trying to send an email using native email client on android phone. I have tried following ways to add an attachment to the mail.
Method 1 Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("image/jpeg"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://sdcard/ abc.jpg"));
Method 2
Sending the image as body content
sendIntent.putExtra(Intent.EXTRA_TEXT, "<HTML><BODY><b><IMG SRC= "data:image/jpeg;base64," + <imagepath> + ""alt = "pleaseview this image"/></b></BODY></HTML>");
I can successfully attach the image manually but when I tried to attach and send it programmatically the mail was sent without attachment.
View 5 Replies
View Related
Nov 10, 2010
I'm creating an app that has an "export" feature which converts the user's data into a CSV file, and allows the user to send it as an attachment to somebody (presumably themselves).
The CSV file is created successfully, but when I try to send the email, I encounter a problem. The device looks like it is going to send the email with the appropriate attachment, but when the email is received... there is no attachment at all...
Here is the code I am using to send the email:
CODE:................
View 2 Replies
View Related
Aug 9, 2010
I have built a test android app and signed it successfully and then sent it to someone to test via email. They click on the attachment in the email on their android phone and get a parsing error.
View 2 Replies
View Related
Oct 2, 2010
I'm trying to save attachment (mms and GMail)
Uri Uri;
Uri = Uri.parse("content://mms/part/" + mmsPartId);
Uri = Uri.parse("content://gmail-ls/messages/email@gmail.com/messageId/attachments/0.1/BEST/true");
InputStream inputStream = getContentResolver().openInputStream(Uri); openInputStream works fine for mms, but for GMail i got error:
"open attachments that are on the sd card with the direct path to the attachment"
I don't understand what "direct path to the attachment"?
View 1 Replies
View Related
Jun 30, 2009
I just copy the code from http://www.openintents.org/en/node/121 to test if I can send .txt or .mp3 file as email attachment, Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("audio/mp3"); sendIntent.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3"); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Subject"); startActivity(Intent.createChooser(sendIntent, "Title:"));
But I got an error said that No applications can perform this action. My android sdk is cupcake1.5, and I have already set up my gmail acount in Email application. Anyone knows why? If I set the type as "*/*"(sendIntent.setType("*/ *");), it can launch the Email activity but with no attachment.
View 5 Replies
View Related
Jun 4, 2010
can't figure out how to save a photo my daughter sent me in the body of her message. When I tap on, it just enlarges to fill my screen. Want to save it byself. can't figure it out. Thanks in advance for the help. Oh, sorry, I have a droid by motorola
View 3 Replies
View Related
Jun 4, 2009
how to create this screen which i have attached as a enclosed as a attachment. how to cod ethis can any body give the clues for that any source example regarding this.
View 7 Replies
View Related
Jul 23, 2010
I configure email by using the android2.1 emulator. When I download the files from mail attachment I get the path content://com.android.email.attachmentprovider/1/1/RAW
I need to read that file data. How to read the data from the device? Is there any permission to read file from the phone memory.
My code is here:
intent = getIntent(); String str_sel_fname=intent.getDataString();
In the eclipse file explorer /data/data/com.android.email/databases/1.db_att/1
Here 1 is store the attachment file. Now How to get the data from that?
View 1 Replies
View Related
Mar 11, 2010
I wanted to know what is the maximum size of the file that we can attach with email in android? Or is the attachment limit completely dependent on E-mail that we have configured?
View 1 Replies
View Related
Nov 5, 2009
In application I'm developing i need to open some standard dialog to browse files on the phone. After picking one file I'll attach it to the message. In Android Dev Guide i found such way to solve my problem...
But in that dialog, when I'm trying to pick sound file, i start to playback. And one more problem - using that dialog i can see only gallery and music tracks.
Is there any other way to display such kind of dialog? Or maybe stop to playback the music?
View 5 Replies
View Related
Jun 25, 2010
Sorry if this has been asked before. Does anyone know when downloading a attachment in email and when completed, you decide to open instead of saving to SD card - does the attachment automatically delete? Or does it get installed into the main memory? If so, how do we delete unwanted attachments?
View 1 Replies
View Related
Aug 12, 2010
Had the phone now two weeks. Got the upgrade to 2.2 from sprint succesfully. Enjoying the power of this machine for sure. I lurk here a lot and have learned tons for sure from reading, reading, reading sometimes till the wee hours. Three things I still can't seem to figure out. 1. Opening an attachment in an email: When a pic or doc file comes in I can't seem to view it. I click "view attachment" it shows the name of the file and the size but does not open the file or download it for me to see. What am I doing wrong? Some kind of settings issue maybe? 2. Deleting a file: I downloaded a pdf file off the internet and now I wish to delete it. Menu does not show an option to delete when I am viewing thde file with pdf viewer. Any ideas? 3. Voice email: I love the voice texting, voice emailing, etc but when I open an email to compose new and use the speak option to speak the name of a current contact (who has an email as part of his contact info) it does not try to auto fill that like it would if I hand texted it in. In other words, say I begin a new email and in the TO box I click the microphone and speak john smith. It types his name in but does not recognize him from contacts and fill in his email address like it does if I start to type j o h n s m by hand. I must be doing something wrong here too maybe?
View 4 Replies
View Related
Nov 17, 2012
I need to open files with custom extension using my app. I am able to do this using Intent filters when the file is in my sd card. I can also view the 'download' and 'preview' buttons if the file is sent as a Gmail attachment. However, when I clicked the download/preview buttons, I got the message - "Sorry, the attachment could not be downloaded".
I thought this was an issue with my app. But I had a random idea and installed "Download All Files" app on my phone.URL....Then, when I click download button in Gmail, both Download All Files and My App are proposed for downloading the file. I chose my app, and everything works fine!!
[HIGH] <intent-filter >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:mimeType="*/*" />
<data android:scheme="content" android:host="*"
[code]...
View 1 Replies
View Related