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

jeudi 27 mars 2014

Quick window apps with quick window case topic




Is there a way to customize which apps appear in the quick window when the case is closed? I want to change the music app to use power amp instead of the default music player. Also is there a way to check texts via the quick window instead of owning the cover?

Sent from my LG-LS995 using xda app-developers app





lundi 17 mars 2014

Looking for OmniROM with Multi Window Support. topic




Hello everyone!

So i am really hoping that someone here can help point me in the right direction...

I just purchased an LTE Nexus 7 2013 32 GB Tablet which is model DEB. Now i have OmniROM for my WiFi only Nexus 7 2013 tablet which is model FLO.

For some reason I can't seem to find the unofficial OmniRom thread on xda for getting OmniROM.

Now I am looking for the OmniROM ROM that has multi-window support, if i remember correctly at the time i installed it on my Nexus 7 FLO tablet the only OmniROM that had mult-window support was an unofficial OmniROM ROM. While doing some looking around xda for the OmniROM thread I think I may have read that the official OmniROM ROM now has multi-window support.

Can anyone confirm if the official OmniROM ROM does in fact have multi-window support?

Again, if anyone can provide me with a link to the xda thread for OmniROM for the Nexus 7 Model DEB tablet i would really appreciate it.

Thank you all again for your help and support.

-droidshadow





dimanche 16 mars 2014

[Q] Reading mode when using multi window? topic




So, I can easily use reading mode when only viewing one app; however, when I want to use two apps (both added to reading mode and work perfectly individually), the screen goes back to default brightness. Is there any way to fix this?





mercredi 19 février 2014

[Q] How to make screenshot of the s-view window? topic




Hey I am sorry if this has been answered before but I can't seem to find an answer about it. I am trying to take a screenshot of the s-view window. Specifically of the s-view screen when I have an incoming call but I can't seem to manage it. To see the s-view window I have to have my s-cover closed so I cannot use either the home+power combination, or the s-pen air commands and palm swipe gesture to take the screenshot. Any help would be appreciated.
PS. I tried lifting the s-cover a bit so I can press the home and power buttons but it doesn't seem to work.





jeudi 30 janvier 2014

(request) grand 2 multi window topic




Is anyone do work on grand2 multi window for our grand

Sent from my GT-I9082 using XDA Premium 4 mobile app





mercredi 29 janvier 2014

open any app in pen window without rooting topic




Hello guys
I found a way to open nearly any app in pen window without rooting
This is the video
http://www.youtube.com/watch?v=UKVPWn13bSI
Forgive my language because this is my first video
Hope u like it
Subscribe to see my new coming videos





mardi 28 janvier 2014

[Help] Transparent window returns no drawing topic




Hi Friends!

As the title Suggests, I have a problem with the output of my drawings and my written text. In another project, in Which I practiced drawing a line and write a text. Since I Could See the results. But Because The background what not transparent!

Can someone tell me what I'm doing wrong here?

Thank you!


Here is my exercise code:

PHP Code:







using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;


using System.Security.Permissions;

using System.Runtime.InteropServices;

using System.Threading;

using Microsoft.DirectX;

using Microsoft.DirectX.Direct3D;


namespace 
DX3D_First

{

    public 
partial class frmOverlay Form

    
{

        
#region DLL-IMPORT


        
internal struct Margins

        
{

            public 
int LeftRightTopBottom;

        }


        [
DllImport"user32.dll"SetLastError true )]

        public static 
extern UInt32 GetWindowLongIntPtr hWndint nIndex );


        [
DllImport"user32.dll" )]

        static 
extern int SetWindowLongIntPtr hWndint nIndexIntPtr dwNewLong );


        [
DllImport"user32.dll" )]

        static 
extern bool SetLayeredWindowAttributesIntPtr hwnduint crKeybyte bAlphauint dwFlags );


        [
DllImport"dwmapi.dll" )]

        static 
extern void DwmExtendFrameIntoClientAreaIntPtr hWndref Margins pMargins );


        public const 
int GWL_EXSTYLE = -20;


        public const 
int WS_EX_LAYERED 0x80000;


        public const 
int WS_EX_TRANSPARENT 0x20;


        public const 
int LWA_ALPHA 0x2;


        public const 
int LWA_COLORKEY 0x1;


        
#endregion

        

        
Device device null;


        
Microsoft.DirectX.Direct3D.Font dxText;

        
Microsoft.DirectX.Direct3D.Line dxLine;


        
Margins marg;

        
bool bStopThread false;


        protected 
override CreateParams CreateParams

        
{

            
get

            
{

                new 
SecurityPermissionSecurityPermissionFlag.UnmanagedCode ).Demand();

                
CreateParams CP base.CreateParams;


                
CP.ExStyle CP.ExStyle 0x00000020;


                return 
CP;

            }

        }


        public 
frmOverlay()

        {

            
InitializeComponent();


            
Gfx();


            
Thread dx = new Thread( new ThreadStartdxThread ) );

            
dx.IsBackground true;

            
dx.Start();

        }



        protected 
override void OnPaintPaintEventArgs e )

        {

            
marg.Left 0;

            
marg.Top 0;

            
marg.Right this.Width;

            
marg.Bottom this.Height;


            
DwmExtendFrameIntoClientAreathis.Handleref marg );

        }


        public 
bool Gfx()

        {

            try

            {

                
SetWindowLongthis.HandleGWL_EXSTYLE, ( IntPtr )( GetWindowLongthis.HandleGWL_EXSTYLE ) | WS_EX_LAYERED WS_EX_TRANSPARENT ) );

                
SetLayeredWindowAttributesthis.Handle0255LWA_ALPHA );


                
PresentParameters pp = new PresentParameters();


                
pp.Windowed true;

                
pp.SwapEffect SwapEffect.Discard;

                
pp.BackBufferFormat Format.A8B8G8R8;


                
device = new Device0DeviceType.HardwarethisCreateFlags.HardwareVertexProcessingpp );


                
dxLine = new Microsoft.DirectX.Direct3D.Linedevice );

                
dxText = new Microsoft.DirectX.Direct3D.Fontdevice, new System.Drawing.Font"Arial"12 ) );


                return 
true;

            }

            catch (
DirectXException)

            {

                return 
false;

            }

        }


        public 
void DrawRectint _Xint _Yint _Widthint _HeightColor _Color )

        {

            
Vector2[] Lines = new Vector2];


            
Lines]._X;

            
Lines]._Y;


            
Lines]._X _Width;

            
Lines]._Y;


            
Lines]._X _Width;

            
Lines]._Y _Height;


            
Lines]._X;

            
Lines]._Y _Height;


            
Lines]._X;

            
Lines]._Y;


            
dxLine.DrawLines_Color );

        }


        public 
void dxThread()

        {

            while(!
bStopThread)

            {

                if( 
device == null ) return;


                
device.ClearClearFlags.TargetColor.FromArgb000), 1.0f);

                
device.RenderState.ZBufferEnable false;

                
device.RenderState.Lighting false;

                
device.RenderState.CullMode Cull.None;

                
device.Transform.Projection Matrix.OrthoOffCenterLH0this.Widththis.Height00);

                
device.BeginScene();


                
// Rendering

                
DrawRect1020100150Color.Blue );


                
dxText.DrawTextnull"Hello World!"100100Color.Red );


                
device.EndScene();

                
device.Present();


                
Application.DoEvents();

            }


            
device.Dispose();


            
Application.Exit();

        }






        public 
void FillRectfloat xfloat yfloat wfloat hint rint gint b )

        {

            
CustomVertex.TransformedColored[] verts = new CustomVertex.TransformedColored];


            
verts].Position = new Vector4xh00.5f );

            
verts].Position = new Vector4xy00.5f );

            
verts].Position = new Vector4wh00.5f );

            
verts].Position = new Vector4wy00.5f );

            
//or make it with for(int i = 0; i < 4; i++) to write less code

            
verts].Color System.Drawing.Color.FromArgbrg).ToArgb();

            
verts].Color System.Drawing.Color.FromArgbrg).ToArgb();

            
verts].Color System.Drawing.Color.FromArgbrg).ToArgb();

            
verts].Color System.Drawing.Color.FromArgbrg).ToArgb();


            
device.VertexFormat CustomVertex.TransformedColored.Format;

            
device.DrawUserPrimitivesPrimitiveType.TriangleStrip2verts );

        }




        public 
void DrawRectanglefloat xfloat yfloat wfloat hColor color )

        {

            
float thickness = ( 25 );

            
//Vertical bar 1

            
FillRect- ( ), - ( ), thickness/*just to keep our width consistent*/hcolor.Rcolor.Gcolor.);

            
////Horiz 1

            
FillRect- ( ), - ( ), wthicknesscolor.Rcolor.Gcolor.);

            
////Horizontal bar 2, -50 because we want the exact center of the crosshair to be 

            ////at our X,Y coords and not the far left on crosshair on them

            
FillRect- ( ), + ( ), wthicknesscolor.Rcolor.Gcolor.);

            
////Vertical bar 2

            
FillRect+ ( ), - ( ), thicknesshcolor.Rcolor.Gcolor.);

        }

    }
















dimanche 26 janvier 2014

Multi window text color (4.3 mk3) topic




Does anyone know how to change the app text color to white in the FlashBarService.apk? Its not in res/values/color or res/color that ive found anyway.






vendredi 24 janvier 2014

Small Phone Call Window While Talking topic




Is there anyway to make phone call window stay small, same size as call and text notification?

Would be nice to be able to continue browsing the web, watch YouTube or reading/writing and answer answer a call without interruption.

Sent from my VS980 4G using Tapatalk





jeudi 23 janvier 2014

Paranoid multi window topic




There's new button on navigation bar called MW-button. When it is long pressed a new screen appears that is split in two. Each having an application drawer where all applications can be scrolled. On clicking an application, it appears in the split view on that side.








Attached Thumbnails


Click image for larger version<br/><br/>Name:	uploadfromtaptalk1390503828830.jpg<br/>Views:	N/A<br/>Size:	64.2 KB<br/>ID:	2534978