Saturday, July 21, 2012

[android-developers] need debug screen on top of app screen.

Hi,

I am fairly green in Android coding.
I need to debug a live app.
My thought was to put a trace/stack/debug text layout over the app temporarily.
Some kind of quickie scrolling Log() somehow.

Q: What is the simplest way to achieve that.

Here is my layout.
Thanks for any leads!
-cellurl


<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <org.wikispeedia.screamingspeedometer2.JetBoyView android:id="@+id/JetBoyView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
 
 <TextView 
    android:id="@+id/touchView"
    android:background="#0000"
    android:layout_weight="1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    />
</FrameLayout>



--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment