Affichage des articles dont le libellé est empty. Afficher tous les articles
Affichage des articles dont le libellé est empty. Afficher tous les articles

samedi 28 février 2015

[THEME ZIP] vr- Test Zip and vr- Empty Zip topic






First Thanks To @toscha42 and @DUHAsianSKILLZ For The Starter Zip And Help To Put This Together.

This has only been tested on the T700.
Please report if it works on any other Tab S.

You'll Know It Works If You Get This Wifi Toggle.


Tab S Test Zip
https://dl.dropboxusercontent.com/u/...R_TEST_ZIP.zip
If It Worked And You Want The Stock Wifi Toggle Back Flash This
https://dl.dropboxusercontent.com/u/...ZIP_Revert.zip

For Themers Or Aspiring Themers
Empty Vr Theme Zip
https://dl.dropboxusercontent.com/u/...R_EMPTYZIP.zip

And Lastly A Huge Thanks To The VR Team For Without Whom None Of This Is Possible!






mercredi 25 février 2015

[Q&A] [ROM] [T700] [NL2] Stock Versions & EMPTY GALAXY ROM 2-22 topic






Q&A for [ROM] [T700] [NL2] Stock Versions & EMPTY GALAXY ROM 2-22

Some developers prefer that questions remain separate from their main development thread to help keep things organized. Placing your question within this thread will increase its chances of being answered by a member of the community or by the developer.

Before posting, please use the forum search and read through the discussion thread for [ROM] [T700] [NL2] Stock Versions & EMPTY GALAXY ROM 2-22. If you can't find an answer, post it here, being sure to give as much information as possible (firmware version, steps to reproduce, logcat if available) so that you can get help.

Thanks for understanding and for helping to keep XDA neat and tidy! :)






mardi 24 février 2015

[Q] Empty tablet topic






Hi,

I've been playing around with some roms for my Samsung Galaxy 10.1 tablet. At some point I wasn't satisfied with the result and started a new flash. I accidently deleted all the data on the tablet. As a result I ended up with a completely empty tablet, and therefore no rom to flash any more.

My question: is it possible to connect a usb stick and copy a rom to the tablet. I don't have an adapter for it yet. But it will be in the mail tomorrow.
If this is not the solution, how can I solve this problem instead?

Thx for any replies on this post ;)






dimanche 22 février 2015

[ROM] [T700] [NL2] Stock Versions & EMPTY GALAXY ROM topic






The Builds Are Stable
The OP is in construction over the next couple of days.

Requirements
Rooted SM-T700 With Custom Recovery

Recommended Instructions
Download Rom Of Choice
Boot Into Recovery
Wipe Dalvik Cache, Cache, System, Data and Internal Storage
Install Rom and Reboot
Go Through Set Up Wizard
Reboot

Feel Free To Use These Builds How You Like
Although I Would Wait For Official Firmware
This Is An OTA Back Up Ran Through Ricky's Kitchen

Completely_Stock_T700XXU1ANL2 https://www.androidfilehost.com/?fid=95916177934532866
Rooted And Busybox As Is Untouched Stock.

T700XXU1ANL2_DORBIZ https://www.androidfilehost.com/?fid=95916177934532867
Deodex, Rooted, BusyBox, Init.d support and ZipAligned
All Bloat. All. I will update this if someone else doesn't make an NL2 debloated.

EMPTYGALAXYROM https://www.androidfilehost.com/?fid=95916177934532868
T700XXU1ANL2 Extremely DeBloated [ongoing]
This Will Be Updated And Themed
Right Now The UI Is Stock With AOSP Effects Tick
Apps In App Drawer
Calculator
Calendar
Camera
Clock
Gallery
Google Settings
Internet
Music
Nova Settings [No SecLauncher]
Play Store
Quick Boot
Root Explorer
Settings
SuperSU
Xposed Installer

Special Thanks To
@Ricky Divjakovski, @ricky310711
@EMSpilot I messaged ya too late I think:)






samedi 14 février 2015

Sdcard empty after installing a rom topic






Hi

I'm having a strange problem with my phone. I cannot install any rom through TWRP. I mean it says "installation completed", but sdcard is empty. There are not a single file there!

I thought about 5.0 after unsuccessful installation of xnote rom. Everything went fine through odin and I was able to use the phone. What I noticed after flash, there are some additional apps from xnote like xposed, xnote transformer, app settings etc.


My actual TWRP version is 2.8.5.0 and the phone is N910F

Any advice?






mercredi 11 février 2015

[Q] empty fields crast my app topic






Hello everyone,

I have start my first app, with this app, can you count your small change. And It works fine.
But, the fields must have a number, otherwise will my app cras.

Is there a solution to fix this? I mean if the user no number set on a row, that the app see this as a zero?

This looks my app:



this is the code what i use, it is maby not perfect but I am a beginner.


Code:


            Button btn_optellen = (Button) findViewById(R.id.btn_optellen);
           
            btn_optellen.setOnClickListener(new OnClickListener() {
                       
                        @Override
                        public void onClick(View v) {
                       
                                double een = Double.valueOf(txt_001.getText().toString());
                                double twee = Double.valueOf(txt_002.getText().toString());

                                double total_een = een * 0.01 ;
                                double total_twee = twee * 0.02 ;

                              double totaal = total_een + total_twee;

                                tt_001.setText(String.format("= €%.2f", total_een ));
                                tt_002.setText(String.format("= €%.2f", total_twee ));

                              tt_totaal.setText(String.format("= €%.2f", totaal));