[APP] Device Reset -[R]- 21 Jan 12 -[U]- 21 Jul 12 -[V]- 3.0.0.0 - Windows Phone 7 Software Development

Device Reset
powered by fiinix's DllImport Project​
description
--- restart or shutdown device
recognition
--- XDA Portal
pre-installed
--- Rataplan ROM
release log
--- Device Reset v3.0.0.0
------ see Post #31 or click here
--- Device Reset v2.0.1.0
------ see Post #25 or click here
--- Device Reset v2.0.0.0
------ see Post #16 or click here
--- Device Reset v1.2.0.0
------ see Post #15 or click here
--- Device Reset v1.1.0.0
------ see Post #14 or click here

does soft reset wipe the device?

soft reset restarts back your phone.
power will shutdown your phone thoroughly(no need to press the power switch button)

Nice app, THX (+)

Thanks sh4d0w86!!
congratulations for first wp7 development!!
will keep my power button intact much longer! that was needed
I'm sure hard-reset is a good idea, but if a bad manip occurs it can be upsetting...or with a flashy red background color for warning purpose...
would it be possible to have all restart options? i mean one which start with the tricolors screen, another for usb update (the one used to load goldcarded .nbh)...?

NebZoNe said:
I'm sure hard-reset is a good idea, but if a bad manip occurs it can be upsetting...or with a flashy red background color for warning purpose...
Click to expand...
Click to collapse
+1 !!!
Just a small notification to confirm Hard-Reset please ...
Thankx for developpement

will it be possible to have a sleep button as a tile?
if possible pinnable tiles on the homescreen...

Magpir said:
does soft reset wipe the device?
Click to expand...
Click to collapse
soft reset = restart, reboot
hard reset = [factory] restore
Ttblondey said:
soft reset restarts back your phone.
power will shutdown your phone thoroughly(no need to press the power switch button)
Click to expand...
Click to collapse
exactly.
NebZoNe said:
Thanks sh4d0w86!!
congratulations for first wp7 development!!
will keep my power button intact much longer! that was needed
I'm sure hard-reset is a good idea, but if a bad manip occurs it can be upsetting...or with a flashy red background color for warning purpose...
would it be possible to have all restart options? i mean one which start with the tricolors screen, another for usb update (the one used to load goldcarded .nbh)...?
Click to expand...
Click to collapse
thanks, NebZoNe.
those were my thoughts exactly when wanting to build this app.
i will, of course, have notification pop up to execute a hard reset.
actually, that is the main reason it isn't implemented in first release...
unsure how to exactly do that, yet.
that is an awesome idea. will look into it.
poloche said:
+1 !!!
Just a small notification to confirm Hard-Reset please ...
Thankx for developpement
Click to expand...
Click to collapse
already on my to-do list.
glad you like the app.
Magpir said:
will it be possible to have a sleep button as a tile?
if possible pinnable tiles on the homescreen...
Click to expand...
Click to collapse
already on my to-do list.
unsure how to do, though, yet, which is why it wasn't already included.

sh4d0w86 said:
already on my to-do list.
unsure how to do, though, yet, which is why it wasn't already included.
Click to expand...
Click to collapse
put this in your MainPage.xaml.cs
could work
Code:
private string tag;
//If the app navigates to the MainPage.Xaml this function tries to read a a tag-property from the Uri.
//You use the Uri to navigate between pages by calling the NavigationServices.Navigate(new Uri("/MainPage.xaml",UriKind.Relative)).
//To push a parameter to the site you can add them to the uri as following:
//"/MainPage.xaml?tag=tagnvalue&otherproperty=othervalue"
//If you launch the app these settings are empty
//If you launch it with the pinned tile you can set this Uri to submit the parameters
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
//get the value.
NavigationContext.QueryString.TryGetValue("tag", out tag);
//restart, shutdown... depending on the tagvalue. if tag is empty nothing happens (you can add a case default: "your code" break; to perform a default action)
switch(tag)
{
case "soft":
softreset(); //your void to perform the softreset
break;
case "hard":
hardreset();
break;
case "shotdown"
shotdown();
break;
}
}
//the functions performing the different restart modes
private void softreset()
{
}
private void hardreset()
{
}
private void shutdown()
{
}
//this action creates a softreset tile by calling PinToStart("soft");
private void PinToStart(string tag)
{
string title = "";
//set the title of the tile
switch (tag)
{
case "soft":
title = "soft reset";
break;
case "hard":
title = "hard reset";
break;
case "shotdown"
title = "shutdown";
break;
}
//search the tile with the title given by the tag in the step before
ShellTile TileToFind = ShellTile.ActiveTiles.FirstOrDefault(x => x.NavigationUri.ToString().Contains("DefaultTitle=" + tag));
//if it's not existing this creates a new one
if (TileToFind == null)
{
//the data for the tile
StandardTileData NewTileData = new StandardTileData
{
//you can create different images for the tiles called "softTile.jpg", "hardTile.jpg", etc. in you "Images" folder
BackgroundImage = new Uri("Images/" + tag + "Tile.jpg", UriKind.Relative),
Title = title,
//Count = 12,
//BackTitle = "",
//BackContent = "",
//BackBackgroundImage = new Uri("Blue.jpg", UriKind.Relative)
};
//create a new tile with the tiledata
ShellTile.Create(new Uri("/MainPage.xaml?tag=" + tag, UriKind.Relative), NewTileData);
}

Does anyone notice/try change background to white while accent color to blueberry and when you open the Device Reset you can't see anything. Is it a bug?

ne0cr0n said:
put this in your MainPage.xaml.cs
could work
Click to expand...
Click to collapse
thanks for that bit of code. unfortunately... i have no idea what it does exactly. :/
Ttblondey said:
Does anyone notice/try change background to white while accent color to blueberry and when you open the Device Reset you can't see anything. Is it a bug?
Click to expand...
Click to collapse
not a bug, an overlook on my part. everything still there and works, it is just white font on white background. fixed for next release. good catch. next release, app will match Theme & Accent choice.

sh4d0w86 said:
thanks for that bit of code. unfortunately... i have no idea what it does exactly. :/
Click to expand...
Click to collapse
I added some comments to the code

sh4d0w86 said:
thanks for that bit of code. unfortunately... i have no idea what it does exactly. :/
not a bug, an overlook on my part. everything still there and works, it is just white font on white background. fixed for next release. good catch. next release, app will match Theme & Accent choice.
Click to expand...
Click to collapse
Just an 'accidentally' catch. Well, will wait for the next release.

Device Reset v1.1.0.0 released
--- Added/Updated
------ Accent & Theme support
------ Message Boxes
--------- Hard Reset
--------- Shutdown
--- Fixed
------ White Theme bug
--- Issue(s)
------ Hard Reset
--------- still not working

Device Reset v1.2.0.0 released
--- Added/Updated
------ removed DLLImport hyperlink(s)
------ revised Application Icons
--- Removed
------ Hard Reset

Device Reset v2.0.0.0 released
--- Added/Updated
------ Double Tap to execute actions
------ Pinnable Soft Reset/Shutdown Tile(s)
--------- Hold button
--------- pinned actions execute from Tile

auto on/off airplane mode
Hi,
Can you add a feature in your app to auto on/off airplane mode at scheduled time??? It could be a great battery saver...

updated Post #1. also, added additional pictures; Tiles, Tile Actions
kushal3110 said:
Hi,
Can you add a feature in your app to auto on/off airplane mode at scheduled time??? It could be a great battery saver...
Click to expand...
Click to collapse
sorry, but that would be a total random feature...

Thanks for this apps

Nikolo33 said:
Thanks for this apps
Click to expand...
Click to collapse
welcome and thank you for using and supporting it.

Related

[Q][SOLVED] PhotoChooserTask Mango Exception

A simple photochooser task application throws a Nullrefference exception(Invalid pointer) and pixel height and width is 0 on mango, on nodo it worked alright.
Am I missing a cast? or this is a bug in mango, and will be fixed?
Here's the code:
Code:
private PhotoChooserTask photo;
// Constructor
public MainPage()
{
InitializeComponent();
photo = new PhotoChooserTask();
photo.Completed += new EventHandler<PhotoResult>(photo_Completed);
}
void photo_Completed(object sender, PhotoResult e)
{
if (e.TaskResult == TaskResult.OK)
{
BitmapImage bi = new BitmapImage();
bi.SetSource(e.ChosenPhoto);
//////////////////////////////////////////////////////////////////////////////////////
var wb = new WriteableBitmap(bi);//Exception here
/////////////////////////////////////////////////////////////////////////////////////
// bi.PixelHeight and bi.PixelWidth == 0;
}
}
private void button1_Click(object sender, RoutedEventArgs e)
{
photo.Show();
}
}
Hope someone can help.
Thanks in advance
This is because you need to set the CreateOptions property of the BitmapImage before you use it to construct the WriteableBitmap.
The default 'create' option on WP7 is DelayCreation (it may be BackgroundCreation in some of the 7.1 betas, but the mango RTM I think is DelayCreation) but either way the problem you're having is that your image has not been initialised yet at the point you use it in the WriteableBitmap's constructor (hence the null reference exception).
The options (depending what you set) let images be only initialised when needed, and downloaded on separate threads / asynchronously, which can help performance (or at least stop the phone blocking other things happening whilst images are loaded). Users also have the ability with the photo chooser to pick images from online ablums, so as you can imagine you also have to handle perhaps a second or two waiting for a download to complete, and of course downloads can also fail when connections drop etc. which you can handle too.
So in answer to your question (off the top of my head, not confirmed it with code) set the createoptions to none, and use the Bitmap's ImageOpened event to construct the WritableBitmap (you may also want to handle the Bitmap's ImageFailed event). Make sure you set up the ImageOpened event before you set the source, i.e.
BitmapImage bi = new BitmapImage();
bi.CreateOptions = BitmapCreateOptions.None;
bi.ImageOpened += new (some event name)
bi.ImageFailed += new (some event name)
bi.SetSource(e.ChosenPhoto);
Hope that helps,
Ian
Thank you very much
Problem solved
otherworld said:
This is because you need to set the CreateOptions property of the BitmapImage before you use it to construct the WriteableBitmap.
The default 'create' option on WP7 is DelayCreation (it may be BackgroundCreation in some of the 7.1 betas, but the mango RTM I think is DelayCreation) but either way the problem you're having is that your image has not been initialised yet at the point you use it in the WriteableBitmap's constructor (hence the null reference exception).
The options (depending what you set) let images be only initialised when needed, and downloaded on separate threads / asynchronously, which can help performance (or at least stop the phone blocking other things happening whilst images are loaded). Users also have the ability with the photo chooser to pick images from online ablums, so as you can imagine you also have to handle perhaps a second or two waiting for a download to complete, and of course downloads can also fail when connections drop etc. which you can handle too.
So in answer to your question (off the top of my head, not confirmed it with code) set the createoptions to none, and use the Bitmap's ImageOpened event to construct the WritableBitmap (you may also want to handle the Bitmap's ImageFailed event). Make sure you set up the ImageOpened event before you set the source, i.e.
BitmapImage bi = new BitmapImage();
bi.CreateOptions = BitmapCreateOptions.None;
bi.ImageOpened += new (some event name)
bi.ImageFailed += new (some event name)
bi.SetSource(e.ChosenPhoto);
Hope that helps,
Ian
Click to expand...
Click to collapse
Hello, I have the same problem (NullReferenceException) and have read you response, which from what I see it is the solution, but I have a problem; not where I have to go to do I change them that you propose. I would be so kind of explaining to me that I have to continue steps. It English me is very bad and I am using a translator.
I have HTC Trophy the v.th 7740.16 with chevrom and U2M7740 of Ansar.
Thank you in advance and greetings.
Hi,
If you upload your code / project I will take a look and see where the error is.
Si me muestras su código / proyecto, puedo ver por qué recibiras una excepción NullReference
Ian
otherworld said:
Hi,
If you upload your code / project I will take a look and see where the error is.
Si me muestras su código / proyecto, puedo ver por qué recibiras una excepción NullReference
Ian
Click to expand...
Click to collapse
Hello,
The question is that it is not any project, applications do not develop (although I would like). This type of errorr (nullreferenceexception) happens to me since I updated to Mango, so much in v.7720.68 as in v.7740.16 and happens in apps as Morfo, Fantasy Painter, and at the time of choosing fund in Touchxperience. Not if these apps are not conditioned to Mango or if, perhaps, from the record it might change some type of configuration or entering the Xaml of the app to be able to change some fact, end not...
For the little that, an error of the photochooser seems to be, the question is if it is possible to gain access to him and as doing it.
Anyhow thank you very much and a cordial greeting.
Hi,
If it is not a code issue then I do not know what it could be. Are you using a custom rom?
Good luck with it.
Ian
otherworld said:
Hi,
If it is not a code issue then I do not know what it could be. Are you using a custom rom?
Good luck with it.
Ian
Click to expand...
Click to collapse
Hello. Not, I am with official Mango the v.th 7740.16. I have already restored to factory and it continues the error. I believe that it is a question of the update, it must have a mistake in the pitcher of photos or some error with the librerie, do not know...
Thank you anyhow and greetings.
Hello, otherworld.
I continue with the same problem, 'nullreferenceexception' related with 'chooserphoto' in some application. The curious thing is that someone of them me work correctly, I gain access to me librery and it takes the photos, and in others not, as for example Morfo. I do not know if the problem is in the code source of these applications or phone is in me. Is this the code source of Morfo, is it possible to correct so that this does not happen?
Thank you in advance and greetings.

[Q] How Can I Make an Object Draggable?

Hello everybody,
Can someone explain me how can I make an object (an Image) draggable by the user in a Windows Phone Silverlight application?
I'm stuck because I don't know how to do this, I've assmued that the AllowDrop propery It's what I need...
Can you help me?
Thank you
There are lot of ways to implement... Simpliest (but not an optimal) way is: drop image to main page, attach these handlers to the image and LayoutRoot.
You should understand idea but your implementation may differ (and better)
Code:
private void image1_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
this.image1.RenderTransform = new TranslateTransform();
}
private void image1_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
this.image1.RenderTransform = null;
}
private void LayoutRoot_MouseMove(object sender, MouseEventArgs e)
{
TranslateTransform t = this.image1.RenderTransform as TranslateTransform;
if (t != null)
{
Point pt = e.GetPosition(this);
t.X = pt.X - (image1.Width / 2);
t.Y = pt.Y - (image1.Height / 2);
}
}
Thank you for the reply!
The code works, but the image is draggable even if I tap somewhere else, how can I make it draggable by only clicking the image?
Thank you again
EDIT: The TranslateTransform is a specific kind of render transformation. Rather that changing properties of the control (such as the Margin property), it simply affects how the control is displayed on the screen.
I need something that actually changes the image margins...
As for first question: attach MouseLeftButtonDown & MouseLeftButtonUp to image, not to the layout root (grid).
For second one: why do you need to change image margins? What's the reason? What are you trying to do?
P.S. Of course you can change margins instead TranslateTransform but I'm not sure is it GPU powered...
MouseLeftButtonDown & MouseLeftButtonUp are already attached to the image... Did you mean MouseMove? I tried to put all the three events on the image, but It doesn't work, I don't have the drag effect :\
I need this for a simple game
This is what I have to do:
1) A level where I don't need to change margins: You have to touch an image which is behind another one, so you have to drage the first image away to touch the second.
2) A level where I need to change margins: You have to complete a puzzle. You have a puzzle with a missing piece on the left and 4 pieces on the right. You have to take the right missing piece and drag it to the empty place in the puzzle. I wanted to so something like "if the block is in a specific range of margins(because it's too difficult to release the image exactly where It should go), then verify it it's the correct one".
Sorry but seems like you need to study game programming basics first. All tasks you've described are very simple but you need (at least) understand what are you doing...
I gave you an idea how to move image (but there are a lot (not, A LOT) of different ways). So you only need to:
- start "dragging" image by changing TranslateTransform coordinates;
- on each change you should check image bounds (it's e.GetPosition(this).X, e.GetPosition(this).Y, e.GetPosition(this).X + image1.Width, e.GetPosition(this).Y + image1.Height) intersection with your placeholder and "fix" image (just do not process MouseMove) . That's all.
If you still don't get it, try good book first.

ISETool.exe bug

Today I found very annoying and strange bug (or, may be, MS call it "feature" ). Seems like directories on isf can hold 1024 files only...
Try code below:
Code:
Random rnd = new Random();
using (var isf = IsolatedStorageFile.GetUserStoreForApplication())
{
byte[] data = new byte[1024];
isf.CreateDirectory("test");
for (int i=0; i<1025; i++)
{
string fileName = "test\\" + i.ToString("D4") + ".bin";
using (IsolatedStorageFileStream fs = new IsolatedStorageFileStream(fileName, FileMode.Create, isf))
{
rnd.NextBytes(data);
fs.Write(data, 0, data.Length);
}
}
}
After loop completed, resulting directory "test" will be empty! But change i<1024 and you'll get all yours 1024 files...
Tested on emulator and HTC Surround, same results. Can't find any documentation about this limitation... Shame on you, MS!
Update: another strange behavior ('cause of this bug) - if you already have 1024 files and try to add one more, the whole directory content is "magically" disappear But exception isn't thrown...
Interesting, I'll try it as well. This would be lame to have to work around.
Dbeattie said:
Interesting, I'll try it as well.
Click to expand...
Click to collapse
Yes, please, confirm...
I can't test this at the moment but I know I write well over 1000 files to /shared/media so I'm curious to tet this.
sensboston said:
Yes, please, confirm...
Click to expand...
Click to collapse
Hey just tried it out, wrote 2k items to a folder called "Data".
While it didn't show up in the Windows Phone Power tools, the file does exist in the folder itself.
bool success = storage.FileExists(Path.Combine("data", "1999"));
So it's either a problem with the WPConnect api or with the power tools, haven't tried the command line tool.
Yep, fortunately you are right, it's a ISETool.exe (or drivers) bug, not a WP7 ISF.
sensboston said:
Yep, fortunately you are right, it's a ISETool.exe (or drivers) bug, not a WP7 ISF.
Click to expand...
Click to collapse
Could you therefore edit the title of the thread please?
Thanks.

[ROM][Updated] Unicom Modified B506 V1.1 by KangVIP (SystemUI FC Patch)

NOTE: This post was translated from Chinese to English, using Google Translate, and I (miz_pimp) am NOT the rom developer, so I can't fix any bugs
This version is based on the B506 production Unicom modified version (V1.1 version), and make appropriate streamlined.
New features using inline code mode, with the original Emui perfect blend of style.
Favorite local friends like him to support, thank you!​
NOTE: The SystemUI FC error has been fixed by KangVIP, and has made a patch to fix the issue. A huge thank you to him! :good:
Welcome to reprint, but please respect the original author's work results and indicate the source, thank you!
Modification and beautification as follows:
1, open the ART mode option (option inside the developer)
is first turned on again when the opportunity ART mode is slower, some software may not be compatible ART mode.
ART mode is turned on, fluency has improved. ​2, the navigation bar to join the lock screen button (click on the lock screen, long press the power menu pops up), you can customize the display.
3, the right to return home switching function keys (right hand when it seems more convenient).
4, the battery icon set, with the following options:
default
does not show the percentage.
displays only a percentage.
hidden percentages and icons.
circular battery icon​
5, the status bar displays real-time network traffic ( upload, download separately and simultaneously display three kinds of display modes )
6, press the return key (one second) end of the current program.
8, the power menu option added to reboot to restart Recovery / Fastboot mode.
9, the navigation bar height of their choice (24/36 / and completely hidden by default), when the minimum height of the horizontal screen 36dpi (the button is displayed in order to avoid failure), modified with immediate effect. Reference fte9k code, thank F major.
10, pull down the notification bar Lunar display
11, the pull-down notification bar:
Click to enter the alarm time is set, press to enter the date setting
Click on a date to enter the calendar, press to enter the date setting. ​
12, time position to join the notification bar invisible power button, you can customize whether to use.
13, the new volume key wake-up option
14, the pull-down screen shortcut buttons added assistant and a flashlight (the follow-up will continue to add some useful buttons)
15, the power to customize menus and add a flashlight and screenshots option
16, re-edit the full-screen assistant:
Long press the Home key to pop up the volume adjustment option
long press the return key to end the current program
long press to open the Quick Settings menu task
lock screen / menu key mergers, click the button to lock screen function, press the Menu key functions​
17, joined APP window operation mode, you can also start multiple app windows, and you can move the zoom window size and position.
(Mainly transplanted from mokee, part reference fte9k code, thank F major)
after starting in windowed mode, the program will appear in the bottom three buttons:
Press and hold the button to the left of the zoom window size
and hold the middle button to move the window Location
clicking the rightmost button to close the current window​
The split-screen multitasking is currently still a WIP (work in progress) Some app are not supported, will continue to follow up ... to see the specific effects of the drawings:
... Above: continuous click The build number can open the "Developer Options"
SCREENSHOTS
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Open the ART mode:
The main new features in the "System Settings" inside:
In the task bar window mode press need to start a program, and click the Start window mode:
Program will be open window mode, and the emergence of three buttons at the bottom:
holding down the leftmost button to zoom the window size
and hold the middle button to move the position of the window
click the right button to close the current window
Multiple program windows:
DOWNLOAD LINK
PATCH
BRUSH METHOD:
Brush machine:
1 computer installed Huawei Device USB driver (can not install pea pods or other phone installation assistant)
2 cell phone turned USB debugging mode: Settings> Developer Options> USB Debugging> check
3 would connect the phone to a computer via a USB cable
4. pea pods installed on the computer or computer program closes housekeeper like , so lead to normal brush.
BRUSH: Download and unzip the attachment, and then perform Flash_All.bat, and follow the instructions carefully operation (described in detail in the run Flash_All.bat can see)!
APPLYING PATCH:
Download the attachment and unzip it, then after installing the rom, enable USB debugging on device, then run patch.bat file.[/SIZE]
If you run the script after release have not been able to enter bootloader mode, you can restart the phone, and hold the volume down key until you restart and see the screen. Then the phone's state Brush mode, run the script again to successfully brush into the brush .
If this is the first brush B506 recommend brushing into Recovery double wipe.
-------------------------------------------------- -------------------------------------------------- ---------------------------------
As the first edition of the EMUI 2.0 in ROM , it is inevitable there will be mistakes. Thanks to support local Friends ROM like this, there is a feedback thread or private bug please believe me, I will try to fix.
SOURCE
Is it multi language or just Chinese and English?
Gesendet von meinem P6-U06
thank you , its a perfect rom. Download Mirror link PLZ, i cant downlaod it
taaeem said:
Is it multi language or just Chinese and English?
Gesendet von meinem P6-U06
Click to expand...
Click to collapse
I'm not sure, will install it, then let you know.
M0JTABA said:
thank you , its a perfect rom. Download Mirror link PLZ, i cant downlaod it
Click to expand...
Click to collapse
I'm also still downloading it.
EDIT: UGH!!! The download failed at 98%!!!! :crying:
hmm.. someone upload english screen shots
Mirror link By Me :
[email protected]
Regards,
miz_pimp said:
I'm not sure, will install it, then let you know.
I'm also still downloading it.
EDIT: UGH!!! The download failed at 98%!!!! :crying:
Click to expand...
Click to collapse
At 98% ! WTF ? [emoji33] Bad lucky.
neodante said:
At 98% ! WTF ? [emoji33] Bad lucky.
Click to expand...
Click to collapse
Second time is 100%, with an authentication failed!! [emoji36]
Thank you for the mirror, @mojtaba [emoji4][emoji106]
Sent from my Huawei P6
Ok, guys, this rom is unfortunately really unstable! I guess I was just too excited about the extra features! [emoji15][emoji5]
I keep getting "SystemUI has stopped" when I try to pull down the notification bar, and it sometimes won't stop popping up for a while. And the navigation bar icons also weren't centered when the lock icon was removed, nor the hide icon.
Also, I wasn't able to change themes, because I got the SystemUI error again. I'm flashing the stock B506 again, and I just realised that I lost all my screenshots that I took when I flashed the stock rom with the 3 button method! [emoji85]
Hopefully this rom will at least give our devs an idea of what modding is possible with EMUI, even when it seems impossible to decompile the apks. There has to be a workaround if the Chinese devs can do it, right?
Sent from my GT-N8000 using Tapatalk
It have prb with english lang UI & it work without any prb in china lang UI.
Version 1.1 released with ART .
miz_pimp said:
Ok, guys, this rom is unfortunately really unstable! I guess I was just too excited about the extra features! [emoji15][emoji5]
I keep getting "SystemUI has stopped" when I try to pull down the notification bar, and it sometimes won't stop popping up for a while. And the navigation bar icons also weren't centered when the lock icon was removed, nor the hide icon.
Also, I wasn't able to change themes, because I got the SystemUI error again. I'm flashing the stock B506 again, and I just realised that I lost all my screenshots that I took when I flashed the stock rom with the 3 button method! [emoji85]
Hopefully this rom will at least give our devs an idea of what modding is possible with EMUI, even when it seems impossible to decompile the apks. There has to be a workaround if the Chinese devs can do it, right?
Sent from my GT-N8000 using Tapatalk
Click to expand...
Click to collapse
Thanks for posting this. How do you flash it? Stock recovery?
Edit
Oh, never mind thanks. ADB method,
Sounds great but unfortunately unusable. System UI crashing just goes in endless loop.
Version 1.1 available now...downloading, hope it works
http://pan.baidu.com/s/1eQIIDVW
Guys, the rom has been updated, with a patch for the SystemUI FC from @kangvip. :good: The updated link for the rom and the patch is in the OP. :victory:
I'll also update with English screenshots as soon as I've downloaded and installed the rom.
Update'
miz_pimp said:
Guys, the rom has been updated, with a patch for the SystemUI FC from @kangvip. :good: The updated link for the rom and the patch is in the OP. :victory:
I'll also update with English screenshots as soon as I've downloaded and installed the rom.
Click to expand...
Click to collapse
so now the ROM works smooth without any problems?
primo14z said:
so now the ROM works smooth without any problems?
Click to expand...
Click to collapse
It should, but I'm still waiting for the download to finish, so I'll report back when I've installed it. [emoji106]
Sent from my Huawei P6
miz_pimp said:
It should, but I'm still waiting for the download to finish, so I'll report back when I've installed it. [emoji106]
Sent from my Huawei P6
Click to expand...
Click to collapse
I Want to Check This ROM. What Kang Have Implement. Can You Mirror The Link Please If You Can.
Yes Its Works perfectly
husen4u said:
I Want to Check This ROM. What Kang Have Implement. Can You Mirror The Link Please If You Can.
Click to expand...
Click to collapse
Unfortunately my connection is too slow; it will take about 4 hours for me to upload the rom, if not longer.
If anyone is able to mirror the update, it will be much appreciated. :good:
Mirror for 1.1 version
Dropbox:https://www.dropbox.com/s/6cwsl0o3y7yezaq/P6-B506U-V1.1.rar

11.27 [Mate EMUI3.0] split-screen multitasking | bidirectional automatic recording et

i have this one on my device and i think its smoother and more stable than previous post plus kang features.
to enable one hand ui modify the following line in /system/build.prob
ro.config.hw_singlehand = 2
Link: pan.baidu.com/s/1o6MCOR4
Password: 21nu
thanks to google translation :
ROM Name: Mate EMUI 3.0 B706
ROM size: 707 M
Adapter Version: EM UI 3.0 B706
Test models: MT1-U06
About the Author: HRT team _KangVIP
Support Forum: Pollen Club ( http://cn.club.vmall.com )
Release date: 2014/11/27
This version is based on the official P6 EMUI 3.0 B706 transplant modify production , and make appropriate streamlined.
New features using embedded code mode, with the original Emui perfect blend of style.
So the hardware are working.
From the XDA Mate CM11 kernel version (thank the original author)
Disclaimer: Please respect the outcome of labor prohibited on this ROM for secondary packaging! ! !
EMUI3.0 official code changes a lot, a lot of resources can not decompile, modify, greatly increased the difficulty,
do this ROM spent more than N effort.
Favorite local friends like him to support ^ _ ^
---------------------------------------- ------------------
Features:
. Automatic call recording, and remove recording tone, you can choose whether to display a message recording (audio file is saved in: sd card / record directory )
added split-screen multitasking switch (not compatible with split-screen mode to run the program (eg: Ch. ROM e), you can close the split-screen mode)
to revise the notification bar invisible switch:
You can select the ranks left / center / right home.
Tap / long press has the following options: flashlight | Shortcut menu | Screenshots | Locker | suspension program | Advanced Settings | Voice Assistant |
end of the current program | return key | Home key | Menu key | add volume | volume reduction | No Action
An operator Custom
Time centered option
kernel supports init.d script (which has built-in root).
The status bar displays the real-time speed.
Multitasking split-screen mode.
a modified version of the screen assistant to make more practical, use more smoothly:
All the keys are long press action to choose from, there are the following options:
flashlight | Shortcut menu | Screenshots | Locker | suspension program | Advanced Settings | Voice Assistant |
end of the current program | volume plus | volume down | menu key | Minimize screen assistant | No action
to increase the screen helper function minimization (via long press to achieve), watching movies or playing games can be displayed as a small dot
screen memory assistant position, reopened after closing (also the case after the restart the phone) before the position is consistent with the close
Join ZTE screenshots (via long press to achieve), when shots directly matting, graffiti and other
navigation bar to join the lock screen button, you can adjust the height and completely hidden.
Home key, back key, task keys, menu key, press the function selection
has the following options:
flashlight | Shortcut menu | Screenshots | Locker | suspension program | Advanced Settings | Voice Assistant |
end of the current program | volume plus | volume down | Menu key | No action
lock screen button when you need to display the menu button will automatically hide, the key position does not move, keep beautiful. Modify the size of desktop icons for 96dpi look more beautiful when the occasional splash screen, the screen brightness can be adjusted manually
...
---------------------- -------------------------------------------------- ------------------------------
new features and optimized as follows:
1, the navigation bar to join the lock screen button, Home, Returns tasks, long press function key menu options
2, the navigation bar height of their choice (24/36/40 / default and completely hidden), modified with immediate effect.
3, the battery icon set has the following options:
Default
does not display percentages.
show only a percentage.
Hidden percentage and icons.
toroidal power icon.
4, the status bar displays real-time network traffic, there are the following options:
Hide
Show only upload traffic.
Show only download traffic
also shows upload / download traffic.
5, modified ZTE screen assistant (see the specific effects of the drawings):
All the action can long press the button to select
6, adding close up tone switch, disable google service options
7 Restart menu option added to restart Recovery / Fastboot mode.
8, the power to customize menus and add flashlights and screenshots option
9, the pull-down notification bar calendar display
drop-down notification bar:
Click time to enter the alarm settings, press enter date settings
. Click on a date into the calendar, press to enter the date setting
10 time position to join the notification bar invisible power button, you can customize whether to use.
11, joined the operator to customize the display settings.
12, the new volume keys wakeup option (no need to modify any key)
13, joined APP window operation mode, you can also start multiple app windows, and you can move the zoom window size and position.
(Mainly transplanted from mokee, part reference code F major, big thank F)
After starting in windowed mode, the program will appear in the left three buttons:
Press and hold the button on the bottom of the window size can be scaled
and hold the center button to move window position
click on the top of the button to close the current window
split-screen multitasking currently still in WIP (work in progress) Some app does not support, follow-up will continue to follow up ...
...
others do not remember ^ _ ^
Click to expand...
Click to collapse
Drawings (from the telecommunications Edition) and a brief description:
Continuous Click the version number to open the "Developer Options"
split-screen multitasking start method:
(off by default, you need to open the Advanced Settings)
in the task bar long as needed The program started in windowed mode, and click the Start window mode, the program will open a window mode, and the emergence of three buttons on the left, hold down the button below the zoom window size, press and hold the center button to move the window position, click on the uppermost button to close the current window.
Enabling suspension program: Press-screen menu button (you can define your own specific key), the pop-up shortcut menu and select the program to the suspension
of new features, mainly in the "Advanced Settings" inside.
If some buttons do not appear to enter: Advanced Settings> Reset the system interface reset once.
The default screen, long press the return key aide, aide screen icon changes to a point, can be restored to their original length by
default long press the screen button to start the task assistant screenshots (specific buttons can be customized button)
Click to expand...
Click to collapse
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Brush risk, please make a backup before Brush!
Many local friends test feedback, Unicom | Mobile Edition can be directly brush, normal use!
-------------------------------------------------- -------------------------
Brush require third-party REC, you can download the following link REC (REC official support brush back)
CWM Chinese version REC: pan .baidu.com / s / 1mgj1rS0
: Perform inside Run.bat, then follow the prompts. -------------------------------------------------- ------------------------------
has brush into third party Recovery (CWM, TWRP, etc.) of the local Friends of the following cards can brush brush Version:
card brush version Download:
Hide the contents of this post
Links: pan.baidu.com/s/1o6MCOR4
Password: 21nu
Card brush package without decompression, the direct use of third-party REC brush into the can! ! !
-------------------------------------------------- ---------------------------------------
brushing can be no double-wipe, can not boot or then you can have a double wipe baffling problem.
-------------------------------------------------- ---------------------------------------
As many resources can not be decompiled, some resources with 16 ary modified. Do this ROM spent more than N effort.
Some built-in software, you can enter streamlined according to their needs.
Unwanted apk, you can uninstall or to your / system / app to delete (KangVIPTools.apk mainly used to implement advanced settings function, you can not delete) the / directory.
Note: Do not modify the system version number information, so as not to appear abnormal.
1. This ROM is published by Huawei pollen club HRT team, please indicate.
2. Brush risk, the process need to be cautious. Please strictly follow the instructions or tips related to the consequences of the operation, the brush caused by the owner's own commitment has nothing to do with the team and individuals.
3. If bug or a private letter, please reply to the thread
4. The final interpretation of all pollen club
Click to expand...
Click to collapse
mazi_v said:
i have this one on my device and i think its smoother and more stable than previous post plus kang features.
to enable one hand ui modify the following line in /system/build.prob
ro.config.hw_singlehand = 2
Link: pan.baidu.com/s/1o6MCOR4
Password: 21nu
thanks to google translation :
Rom is very smooth, thank you! Just curious, does anyone know how to change the DPI? I can't find the usual command line in the build prop.
Edit: solved. Just added the command line.
Click to expand...
Click to collapse
does this rom support english language ?
Javadn said:
does this rom support english language ?
Click to expand...
Click to collapse
Yes.
would one of you guys upload this rom to some other uploading web services and let us who cant download from baidu get this wonderful rom ?
EDIT : downloaded , installing the rom ATM ! will tell you the results
EDIT2 : its working Smoothly , beware that this rom is not 4.4.4 its 4.4.2
how about cellular data connection..is it working?
Sent from my HUAWEI MT1-U06 using XDA Free mobile app
zlazfazkazda said:
how about cellular data connection..is it working?
Sent from my HUAWEI MT1-U06 using XDA Free mobile app
Click to expand...
Click to collapse
I was running it on the European version. 2 GB and no NFC and I had a perfect cellular data connection.
thx dude...i'll download and try to install on my HAM
Sent from my HUAWEI MT1-U06 using XDA Free mobile app
I've installed this rom but still the problem is celular data connection that won't connect..over all this ROM is very beautiful
Sent from my HUAWEI P6-C00 using XDA Free mobile app
zlazfazkazda said:
I've installed this rom but still the problem is celular data connection that won't connect..over all this ROM is very beautiful
Sent from my HUAWEI P6-C00 using XDA Free mobile app
Click to expand...
Click to collapse
I'm running my HAM on the Wind Network in Canada and I'm not having any data connection problems at all. I have the European Variant without NFC.
i don't know what is wrong, i've followed the brush procedure using TWRP...i tried 3 different MIUI3.04.4.2 ROM with INDONESIA TELKOMSEL provider but the problem still the same, do you use first model of HAM or with 2GB RAM??
zlazfazkazda said:
i don't know what is wrong, i've followed the brush procedure using TWRP...i tried 3 different MIUI3.04.4.2 ROM with INDONESIA TELKOMSEL provider but the problem still the same, do you use first model of HAM or with 2GB RAM??
Click to expand...
Click to collapse
Mine is the the European 2 GB variant with no NFC.
---------- Post added at 02:15 PM ---------- Previous post was at 01:54 PM ----------
zlazfazkazda said:
i don't know what is wrong, i've followed the brush procedure using TWRP...i tried 3 different MIUI3.04.4.2 ROM with INDONESIA TELKOMSEL provider but the problem still the same, do you use first model of HAM or with 2GB RAM??
Click to expand...
Click to collapse
Maybe you need to add the APN?
i already did add the apn but not working...i'll wait for the developer wondering to solve the problem
Mine is Indian version 2gb ram wid no NFC.....4 days no data connection on...only on wlan
Sent from my HUAWEI P6-C00 using XDA Free mobile app
shaun100689 said:
Mine is Indian version 2gb ram wid no NFC.....4 days no data connection on...only on wlan
Sent from my HUAWEI P6-C00 using XDA Free mobile app
Click to expand...
Click to collapse
That's strange. Mine works great for data connection, aside from the fact that I couldn't customize using xposed and gravitybox. Maybe its because my network is Wind Canada and we run off of an AWS frequency? Not sure, well sorry about your luck people. I wish I had an answer to help you guys. Oh, plus it ate my battery 3 to 4 times faster when using as a daily driver.
This ROM is great!!! One day in and so far everything works for me (everything I've tried out that is). Only issue so far is a delay on incoming calls before the screen comes up allowing you to answer. I actually missed 2 calls waiting for it to come up.
Also, calendar force closes, but I think I caused that, I tried to restore my data using Titanium Backup from my previous B930 ROM. Going to reflash calendar using the aroma GApps installer and see if that fixes it.
Great job on this ROM man!!!!
Sent from my MT1-U06 using Tapatalk 2
Password.
Please!
Anyone know the password?...
Thank You.
hasbrone said:
Please!
Anyone know the password?...
Thank You.
Click to expand...
Click to collapse
YES! Everyone who read the 5 line on the FIRST post!
huggy_72 said:
YES! Everyone who read the 5 line on the FIRST post!
Click to expand...
Click to collapse
Thank You.
But, asked for the password to unzip the zip...
Anyone know ...
You can edit the build.prop to change the DPI (to 241)?
This is my screenshot: (see attached)

Categories

Resources