Feed Advanced Search

Dec 29 2016

pmuralidharan added inline comments to D3822: use a native event filter to notice the screen was swapped.
Dec 29 2016, 5:01 AM · Plasma

Dec 27 2016

pmuralidharan added a comment to T1007: Figure out how to set the color of the system bar (i.e. where the notifications and the clock are).

Ah, I see. Will try to report it to Qt soon.

Dec 27 2016, 6:52 PM · Android
pmuralidharan added a comment to T1007: Figure out how to set the color of the system bar (i.e. where the notifications and the clock are).

The following Java code snippet does it.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(Color.BLUE);

}

Dec 27 2016, 2:43 PM · Android
pmuralidharan added a comment to T2926: Concept for handling crashes (Android vs. KCrash).

Crash indicate crash in java code (Android code alone) or C++ code as well? I could implement catching crash in Java code and can call DrKonqi.

Dec 27 2016, 1:38 PM · Android
pmuralidharan added a comment to T2926: Concept for handling crashes (Android vs. KCrash).

I have good understanding of Android, interested in working on this. Would like to know what is the required to be done.

Dec 27 2016, 7:18 AM · Android