Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit abf2b931 authored by Alex Sakhartchouk's avatar Alex Sakhartchouk
Browse files

sped up the ui in image processing test app

Change-Id: I5e8637cf4386b31d961d41c64019f9ac98d21905
parent b86a6ea4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,10 +2,10 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.rs.image">

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />    
    <uses-sdk android:minSdkVersion="11" />
    <application android:label="Image Processing">
    <application android:label="Image Processing"
                 android:hardwareAccelerated="true">
        <activity android:name="ImageProcessingActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
−74.6 KiB
Loading image diff...
+597 KiB
Loading image diff...
−74.6 KiB
Loading image diff...
+22 −21
Original line number Diff line number Diff line
@@ -17,15 +17,23 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
            android:layout_height="fill_parent"
            android:id="@+id/toplevel">
    <SurfaceView
        android:id="@+id/surface"
        android:layout_width="1dip"
        android:layout_height="1dip" />
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:orientation="vertical"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">
            <ImageView
                android:id="@+id/display"
        android:layout_width="320dip"
        android:layout_height="266dip" />
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:orientation="horizontal"
                android:layout_width="fill_parent"
@@ -42,13 +50,6 @@
                        android:textSize="8pt"
                        android:text="@string/saturation"/>
            </LinearLayout>
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:orientation="vertical"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">
            <TextView
                android:id="@+id/inSaturationText"
                android:layout_width="match_parent"
Loading