Is there a way to change the default naming of photos taken with HTC One camera app (IMAG0001, IMAG0002) to IMAG_date_001 or something like this?
Thanks.
sagittaru said:
Is there a way to change the default naming of photos taken with HTC One camera app (IMAG0001, IMAG0002) to IMAG_date_001 or something like this?
Thanks.
Click to expand...
Click to collapse
Changing the code of the Camera app
Related
Simply change the DPI to 210 and voila you got the camera if you swipe to the right from the lockscreen.... you also have to deal with the phone ui then... not something I would do because of that... just making you know....
Very interesting that Google simply lock the functions that are already on the system... why? At least we should have widgets on the right then...
Other annoying thing is that if you change the DPI everything go smaller but you don't get the tablet UK.....
Sent from my R800i on 4.1.1
360porcento said:
Simply change the DPI to 210 and voila you got the camera if you swipe to the right from the lockscreen.... you also have to deal with the phone ui then... not something I would do because of that... just making you know....
Very interesting that Google simply lock the functions that are already on the system... why? At least we should have widgets on the right then...
Other annoying thing is that if you change the DPI everything go smaller but you don't get the tablet UK.....
Sent from my R800i on 4.1.1
Click to expand...
Click to collapse
If you mean that you don't get the tablet ui even if you go down to 160 or so, then that might be expected as it seems google is wanting to do away with the so called "tablet UI"...evident since even nexus 10 has phablet ui.
TjPhysicist said:
If you mean that you don't get the tablet ui even if you go down to 160 or so, then that might be expected as it seems google is wanting to do away with the so called "tablet UI"...evident since even nexus 10 has phablet ui.
Click to expand...
Click to collapse
Yep, but then why keep the phone ui in the same as the phablet? and why hide the camera? is not that it isnt installed, is just hiden....
It's possible that they are intentionally not enabling the camera on the Nexus 7 because it doesn't have a rear facing camera. Just a guess but it makes sense. The camera can be integrated into applications that make proper use of the front facing camera (skype, etc...) but it's not real practical to use a front facing camera on a tablet to snap photos of anything other than yourself and Google might not want to imply that it is.
sandnap said:
It's possible that they are intentionally not enabling the camera on the Nexus 7 because it doesn't have a rear facing camera. Just a guess but it makes sense. The camera can be integrated into applications that make proper use of the front facing camera (skype, etc...) but it's not real practical to use a front facing camera on a tablet to snap photos of anything other than yourself and Google might not want to imply that it is.
Click to expand...
Click to collapse
Ok , but why don't they take it off the system instead of hiding it? Seems to me that the software is the same as the n4... gives the impression to me that they are just lazy to not create its own software for the n7...
Sent from my R800i using xda app-developers app
sandnap said:
It's possible that they are intentionally not enabling the camera on the Nexus 7 because it doesn't have a rear facing camera. Just a guess but it makes sense. The camera can be integrated into applications that make proper use of the front facing camera (skype, etc...) but it's not real practical to use a front facing camera on a tablet to snap photos of anything other than yourself and Google might not want to imply that it is.
Click to expand...
Click to collapse
The camera app is there, but hidden. I noticed this in Evernote when I went to create a picture note it asked if I wanted to use "Camera" or another camera app I have installed. I chose Camera and it opened the new camera app, minus the video/photosphere toggle.
They make the camera app available for programmatic use by third party apps. An app can turn it on and take a photo or video. In other words developers don't have to write their own interfaces to the camera. I am actually a developer and just checked out the API calls that do this. This is exactly what the apps we use to turn it on do.
Sent from my Nexus 7 using xda app-developers app
Camera Launcher still works on 4.2
Anyone know how to or have knowledge how to change default gallery to another like Quickpic?
Stock gallery is awful lol
Brava27 said:
Anyone know how to or have knowledge how to change default gallery to another like Quickpic?
Stock gallery is awful lol
Click to expand...
Click to collapse
I want this feature too, but I think it's not possible, not that I've seen do it in the previous android phones..
You can always install other camera apps, like Snap Camera HDR is good, Manual Camera, Camera FV-5, DSLR Camera pro, with these app you can use other gallery apps.
Once Quickpic is installed, doesn't it ask you to choose the default app when you open a picture?
Sent from my NCC-1701 using Tapatalk.
Giancarlo456 said:
I want this feature too, but I think it's not possible, not that I've seen do it in the previous android phones..
You can always install other camera apps, like Snap Camera HDR is good, Manual Camera, Camera FV-5, DSLR Camera pro, with these app you can use other gallery apps.
Click to expand...
Click to collapse
Yes! Good call on snap camera. I like it!
Giancarlo456 said:
I want this feature too, but I think it's not possible, not that I've seen do it in the previous android phones..
You can always install other camera apps, like Snap Camera HDR is good, Manual Camera, Camera FV-5, DSLR Camera pro, with these app you can use other gallery apps.
Click to expand...
Click to collapse
I don't have S6 but successfully did this in others models.
Here the clue, just replace the following :
"com.sec.android.gallery3d" => "com.alensw.PicFolder"
"com.sec.android.gallery3d.app.Gallery" => "com.alensw.PicFolder.GalleryActivity"
After that when click the gallery in the Camera App, it will open with QuickPic
hkla said:
Here the clue, just replace the following :
"com.sec.android.gallery3d" => "com.alensw.PicFolder"
"com.sec.android.gallery3d.app.Gallery" => "com.alensw.PicFolder.GalleryActivity"
Click to expand...
Click to collapse
Didn't really understand what to do.
You mean rename the folders in Android/data ?
Giancarlo456 said:
Didn't really understand what to do.
You mean rename the folders in Android/data ?
Click to expand...
Click to collapse
De-compile the Camera App and search and replace those words in the smali files
"com.sec.android.gallery3d" => "com.alensw.PicFolder"
"com.sec.android.gallery3d.app.Gallery" => "com.alensw.PicFolder.GalleryActivity"
Re-compile back and replace the original apk.
hkla said:
De-compile the Camera App and search and replace those words in the smali files
"com.sec.android.gallery3d" => "com.alensw.PicFolder"
"com.sec.android.gallery3d.app.Gallery" => "com.alensw.PicFolder.GalleryActivity"
Re-compile back and replace the original apk.
Click to expand...
Click to collapse
For some reason I can't decompile the SamsungCamera4.apk, other apks I can, but not this one... Don't know why..
Edit: I used the apktool method with the "apktool d SamsungCamera4.apk Camera" line and also used this website http://www.decompileandroid.com/ both end in errors
Giancarlo456 said:
For some reason I can't decompile the SamsungCamera4.apk, other apks I can, but not this one... Don't know why..
Edit: I used the apktool method with the "apktool d SamsungCamera4.apk Camera" line and also used this website http://www.decompileandroid.com/ both end in errors
Click to expand...
Click to collapse
Not sure, don't have S6.
But somebody already successfully MOD S6 camera so technically shouldn't be problem.
http://forum.xda-developers.com/galaxy-s6/themes-apps/camera-mod-s6-g920f-5-0-2-improved-t3080693
I'm interested too, i want open quick pic in stock camera app but i don't find nothing except with xposed framework for the old galaxys
Brava27 said:
Yes! Good call on snap camera. I like it!
Click to expand...
Click to collapse
Hi there, I don't have the S6 but I have the S5 and I use snap camera on it to remove the noise reduction.
Can you test it out and tell me if you can get the noise reduction removed and sharpness reduced?
Go to "Other" in Snap Camera, and select "Show Advanced Settings" and "Use OpenGLES 2.0". Go to Photo and tell me if you see "Denoise" under zero shutter lag. If not then make sure that in Other "Use Camera2 API" is not selected.
When you see Denoise, deselect it if it's selected and let me know if you see lots of noise. You'll get much more details in the pictures but more noise.
Thanks!
I like using QuickPic. It's very nice.
Brava27 said:
Yes! Good call on snap camera. I like it!
Click to expand...
Click to collapse
Even with Snap Camera and the "disable gallery" setting selected, it brings me into Snap Camera Gallery. How do I change this?
Sent from my SM-G920T using Tapatalk
Hello all,
Found a really strange thing.
I sent a picture from the stock message app ( also on t-mobile) . when I delete the picture from the gallery, it deletes the picture from the camera folder, but then adds the picture into a picture folder.
I have tried deleting the picture folder, but it keeps coming back and duplicating the images. I have tried this on all 3 of our Note 5's and it does it to all of them.
I have not been able to find a setting to turn this off, or a reason why it does it.
Anyone else know about this ?
Noticed that too, seems that itll create a separate folder with all the picture messages you send via text
Yeah, this is annoying. It's really one of the only gripes I have about the phone that I can't figure out. I don't want to use another gallery app and I don't want to root. Not sure how to fix it.
I hate this so much does anyone know how to fix it?
motohip said:
I hate this so much does anyone know how to fix it?
Click to expand...
Click to collapse
You just need to look at the camera album instead of using the time view.
That doesn't work.
Is this happening to anyone else or just some people?
My HTC One Mini 2, when takes photos with flash, they are all with a purple hue evident.
Do You know what it is and how to fix them?
DRAFF said:
My HTC One Mini 2, when takes photos with flash, they are all with a purple hue evident.
Do You know what it is and how to fix them?
Click to expand...
Click to collapse
look at settings. its possible you are using a custom setting.
enter cam and in settings, reset to original.
...same at default setting
anyone helps?
DRAFF said:
anyone helps?
Click to expand...
Click to collapse
i think you best contact HTC.
When its faulty hardware they usually fix for free.
I can fix it [email protected]
Hi does anyone know where the photo setting that I can set?
Cause I wanna the photos are shown in descending order instead of the newer ones below.
iicecube said:
Hi does anyone know where the photo setting that I can set?
Cause I wanna the photos are shown in descending order instead of the newer ones below.
Click to expand...
Click to collapse
Haha good question....the photo gallery is sorting and displaying in a strange way....newest on the bottom and u have to scroll up to see older ones.
Any other app even messaging ones display newest on the top so the phone gallery app is pretty annoying.
Yeap hope OPPO can let us set it in our preferred way, it annoying when you got a lot of photos on top but need to scroll all the way down to see the new shot that we make.