2010-06-15 18:03:40 -07:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<!-- Copyright (C) 2010 The Android Open Source Project
|
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-09-10 19:20:06 -07:00
|
|
|
|
package="com.android.test.hwui">
|
2010-06-15 18:03:40 -07:00
|
|
|
|
|
2010-12-14 14:58:59 -08:00
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
New widget: TextureView
Bug #4343984
TextureView can be used to render media content (video, OpenGL,
RenderScript) inside a View.
The key difference with SurfaceView is that TextureView does
not create a new Surface. This gives the ability to seamlessly
transform, animate, fade, etc. a TextureView, which was hard
if not impossible to do with a SurfaceView.
A TextureView also interacts perfectly with ScrollView,
ListView, etc. It allows application to embed media content
in a much more flexible way than before.
For instance, to render the camera preview at 50% opacity,
all you need to do is the following:
mTextureView.setAlpha(0.5f);
Camera c = Camera.open();
c.setPreviewTexture(mTextureView.getSurfaceTexture());
c.startPreview();
TextureView uses a SurfaceTexture to get the job done. More
APIs are required to make it easy to create OpenGL contexts
for a TextureView. It can currently be done with a bit of
JNI code.
Change-Id: Iaa7953097ab5beb8437bcbbfa03b2df5b7f80cd7
2011-04-28 18:40:04 -07:00
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2011-06-14 16:45:55 -07:00
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
New widget: TextureView
Bug #4343984
TextureView can be used to render media content (video, OpenGL,
RenderScript) inside a View.
The key difference with SurfaceView is that TextureView does
not create a new Surface. This gives the ability to seamlessly
transform, animate, fade, etc. a TextureView, which was hard
if not impossible to do with a SurfaceView.
A TextureView also interacts perfectly with ScrollView,
ListView, etc. It allows application to embed media content
in a much more flexible way than before.
For instance, to render the camera preview at 50% opacity,
all you need to do is the following:
mTextureView.setAlpha(0.5f);
Camera c = Camera.open();
c.setPreviewTexture(mTextureView.getSurfaceTexture());
c.startPreview();
TextureView uses a SurfaceTexture to get the job done. More
APIs are required to make it easy to create OpenGL contexts
for a TextureView. It can currently be done with a bit of
JNI code.
Change-Id: Iaa7953097ab5beb8437bcbbfa03b2df5b7f80cd7
2011-04-28 18:40:04 -07:00
|
|
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.camera" />
|
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus" />
|
|
|
|
|
|
2011-01-24 16:33:45 -08:00
|
|
|
|
<uses-sdk android:minSdkVersion="11" />
|
2010-11-03 16:19:08 -07:00
|
|
|
|
|
2010-06-16 18:44:05 -07:00
|
|
|
|
<application
|
|
|
|
|
android:label="HwUi"
|
|
|
|
|
android:hardwareAccelerated="true">
|
2010-06-15 18:03:40 -07:00
|
|
|
|
|
2012-02-01 16:10:55 -08:00
|
|
|
|
<meta-data android:name="android.graphics.renderThread" android:value="true" />
|
|
|
|
|
|
2012-01-23 17:09:05 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="PaintDrawFilterActivity"
|
|
|
|
|
android:label="_DrawFilter">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2012-02-07 17:04:34 -08:00
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="ClipRegionActivity"
|
|
|
|
|
android:label="_ClipRegion">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2012-01-23 17:09:05 -08:00
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-09-28 16:50:02 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="DisplayListLayersActivity"
|
|
|
|
|
android:label="__DisplayListLayers">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2012-01-19 16:53:41 -08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="MatrixActivity"
|
|
|
|
|
android:label="_Matrix">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2011-09-28 16:50:02 -07:00
|
|
|
|
|
2011-07-28 15:39:12 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="TextFadeActivity"
|
|
|
|
|
android:label="_TextFade">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-07-07 14:10:06 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="MaxBitmapSizeActivity"
|
|
|
|
|
android:label="_MaxBitmapSize">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-06-29 17:20:38 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="TimeDialogActivity"
|
|
|
|
|
android:label="_TimeDialog">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-06-24 13:20:23 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="OpaqueActivity"
|
|
|
|
|
android:label="_Opaque">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-06-17 17:45:59 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="GetBitmapActivity"
|
|
|
|
|
android:label="_GetBitmap">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-06-17 15:47:07 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="SmallCircleActivity"
|
|
|
|
|
android:label="_SmallCircle">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-05-26 16:40:55 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ClearActivity"
|
|
|
|
|
android:label="_Clear">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
New widget: TextureView
Bug #4343984
TextureView can be used to render media content (video, OpenGL,
RenderScript) inside a View.
The key difference with SurfaceView is that TextureView does
not create a new Surface. This gives the ability to seamlessly
transform, animate, fade, etc. a TextureView, which was hard
if not impossible to do with a SurfaceView.
A TextureView also interacts perfectly with ScrollView,
ListView, etc. It allows application to embed media content
in a much more flexible way than before.
For instance, to render the camera preview at 50% opacity,
all you need to do is the following:
mTextureView.setAlpha(0.5f);
Camera c = Camera.open();
c.setPreviewTexture(mTextureView.getSurfaceTexture());
c.startPreview();
TextureView uses a SurfaceTexture to get the job done. More
APIs are required to make it easy to create OpenGL contexts
for a TextureView. It can currently be done with a bit of
JNI code.
Change-Id: Iaa7953097ab5beb8437bcbbfa03b2df5b7f80cd7
2011-04-28 18:40:04 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="TextureViewActivity"
|
|
|
|
|
android:label="_TextureView">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2011-05-02 17:24:22 -07:00
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-07-14 18:08:37 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="CanvasTextureViewActivity"
|
|
|
|
|
android:label="_CanvasTextureView">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-05-02 17:24:22 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="GLTextureViewActivity"
|
|
|
|
|
android:label="_TextureViewGL">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
New widget: TextureView
Bug #4343984
TextureView can be used to render media content (video, OpenGL,
RenderScript) inside a View.
The key difference with SurfaceView is that TextureView does
not create a new Surface. This gives the ability to seamlessly
transform, animate, fade, etc. a TextureView, which was hard
if not impossible to do with a SurfaceView.
A TextureView also interacts perfectly with ScrollView,
ListView, etc. It allows application to embed media content
in a much more flexible way than before.
For instance, to render the camera preview at 50% opacity,
all you need to do is the following:
mTextureView.setAlpha(0.5f);
Camera c = Camera.open();
c.setPreviewTexture(mTextureView.getSurfaceTexture());
c.startPreview();
TextureView uses a SurfaceTexture to get the job done. More
APIs are required to make it easy to create OpenGL contexts
for a TextureView. It can currently be done with a bit of
JNI code.
Change-Id: Iaa7953097ab5beb8437bcbbfa03b2df5b7f80cd7
2011-04-28 18:40:04 -07:00
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-01-20 19:09:30 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="BitmapMeshActivity"
|
|
|
|
|
android:label="_BitmapMesh">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2011-02-10 15:52:54 -08:00
|
|
|
|
|
2011-03-21 15:24:51 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="BitmapMutateActivity"
|
|
|
|
|
android:label="_BitmapMutate">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-02-10 15:52:54 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="BitmapMeshLayerActivity"
|
|
|
|
|
android:label="_BitmapMeshLayer">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-02-04 00:59:34 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="MarqueeActivity"
|
|
|
|
|
android:label="_Marquee">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2011-01-20 19:09:30 -08:00
|
|
|
|
|
2011-01-19 21:54:02 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ShapesActivity"
|
|
|
|
|
android:label="_Shapes">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-05-12 09:06:00 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ColoredRectsActivity"
|
|
|
|
|
android:label="_Rects">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-01-16 15:16:38 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="SimplePatchActivity"
|
|
|
|
|
android:label="_SimplePatch"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-01-06 10:04:23 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ViewLayersActivity"
|
|
|
|
|
android:label="_ViewLayers">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-01-11 14:29:25 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ViewLayersActivity2"
|
|
|
|
|
android:label="_ViewLayers2">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-01-19 13:42:26 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ViewLayersActivity3"
|
|
|
|
|
android:label="_ViewLayers3">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2011-02-01 13:05:16 -08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="ViewLayersActivity4"
|
|
|
|
|
android:label="_ViewLayers4">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2011-01-19 13:42:26 -08:00
|
|
|
|
|
2011-02-01 17:20:48 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ViewLayersActivity5"
|
|
|
|
|
android:label="_ViewLayers5">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2011-02-02 20:28:09 -08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="ViewLayersActivity6"
|
|
|
|
|
android:label="_ViewLayers6">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-06-28 17:12:22 -07:00
|
|
|
|
<activity
|
2010-06-28 17:42:46 -07:00
|
|
|
|
android:name="AlphaLayersActivity"
|
|
|
|
|
android:label="_αLayers">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-09-20 17:53:08 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="AdvancedGradientsActivity"
|
|
|
|
|
android:label="_Advanced Gradients">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-10-15 13:57:28 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="Bitmaps3dActivity"
|
|
|
|
|
android:label="_Bitmaps3d">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-10-01 16:36:14 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="LabelsActivity"
|
|
|
|
|
android:label="_Labels">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-10-15 13:57:28 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ViewFlipperActivity"
|
|
|
|
|
android:label="_ViewFlipper"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-09-07 17:16:32 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ResizeActivity"
|
|
|
|
|
android:label="_Resize"
|
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-08-27 16:56:50 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="TextGammaActivity"
|
|
|
|
|
android:label="_Gamma"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="TextGammaActivity$SubGammaActivity"
|
|
|
|
|
android:label="_Sub Gamma"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
|
|
|
|
android:hardwareAccelerated="false">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-06-28 17:42:46 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="LayersActivity"
|
|
|
|
|
android:label="_Layers"
|
2010-06-30 17:56:19 -07:00
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
2010-06-15 18:03:40 -07:00
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-09-10 19:20:06 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="NewLayersActivity"
|
|
|
|
|
android:label="_NewLayers">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-06-28 17:12:22 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="XfermodeActivity"
|
|
|
|
|
android:label="_Xfermodes"
|
2010-06-30 17:56:19 -07:00
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
2010-06-28 17:12:22 -07:00
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-06-29 21:05:21 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="BitmapsActivity"
|
|
|
|
|
android:label="_Bitmaps"
|
2010-06-30 17:56:19 -07:00
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
2010-06-29 21:05:21 -07:00
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2011-01-18 11:19:19 -08:00
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="BitmapsSkewActivity"
|
|
|
|
|
android:label="_BitmapsSkew">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2010-06-29 21:05:21 -07:00
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-08-19 14:45:42 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="BitmapsAlphaActivity"
|
|
|
|
|
android:label="_BitmapsAlpha"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-06-30 19:21:21 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="BitmapsRectActivity"
|
|
|
|
|
android:label="_BitmapsRect"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-09-13 17:27:57 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="ThinPatchesActivity"
|
|
|
|
|
android:label="_9patchThin"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-07-08 19:17:03 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="NinePatchesActivity"
|
|
|
|
|
android:label="_9patch">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2011-07-11 18:23:09 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="MoreNinePatchesActivity"
|
|
|
|
|
android:label="_9patch2">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-07-12 20:20:03 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="QuickRejectActivity"
|
|
|
|
|
android:label="_QuickReject">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-07-14 16:34:53 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="RotationActivity"
|
|
|
|
|
android:label="_Rotation">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-10-01 00:25:02 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="GradientsActivity"
|
|
|
|
|
android:label="_Gradients">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-07-14 19:18:51 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="ShadersActivity"
|
|
|
|
|
android:label="_Shaders">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-07-21 21:33:20 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="TextActivity"
|
|
|
|
|
android:label="_Text"
|
2010-08-20 18:42:37 -07:00
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar">
|
2010-07-21 21:33:20 -07:00
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-07-22 13:08:20 -07:00
|
|
|
|
|
2012-01-17 14:52:13 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="PosTextActivity"
|
|
|
|
|
android:label="_PosText"
|
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-07-22 13:08:20 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="ListActivity"
|
2011-05-25 17:49:11 -07:00
|
|
|
|
android:label="__List">
|
2010-07-22 13:08:20 -07:00
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-09-10 19:20:06 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="TransparentListActivity"
|
|
|
|
|
android:label="_TransparentList">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-07-30 11:36:12 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="MoreShadersActivity"
|
|
|
|
|
android:label="_Shaders2">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-08-02 18:50:22 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="ColorFiltersActivity"
|
|
|
|
|
android:label="_ColorFilters">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-08-03 18:05:47 -07:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="LinesActivity"
|
2010-12-08 18:34:42 -08:00
|
|
|
|
android:label="_Lines">
|
2010-08-03 18:05:47 -07:00
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-08-04 15:40:07 -07:00
|
|
|
|
|
2011-04-13 17:58:08 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="Lines2Activity"
|
|
|
|
|
android:label="_Lines2">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-08-04 15:40:07 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="PathsActivity"
|
|
|
|
|
android:label="_Paths">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2010-08-05 19:08:32 -07:00
|
|
|
|
|
2012-02-24 16:48:34 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="TextOnPathActivity"
|
|
|
|
|
android:label="_TextOnPath">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2012-02-21 18:32:32 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="PathsCacheActivity"
|
|
|
|
|
android:label="_PathsCache">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-04-26 07:28:09 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="PointsActivity"
|
|
|
|
|
android:label="_Points">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-08-05 19:08:32 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="Transform3dActivity"
|
|
|
|
|
android:label="_3d">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2011-02-23 19:46:33 -08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="Animated3dActivity"
|
2011-06-29 17:20:38 -07:00
|
|
|
|
android:label="_Animated 3d">
|
2011-02-23 19:46:33 -08:00
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-08-09 20:48:09 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="SimplePathsActivity"
|
|
|
|
|
android:label="_SimplePaths">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-08-10 19:21:34 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="AdvancedBlendActivity"
|
2010-09-20 17:53:08 -07:00
|
|
|
|
android:label="_Advanced Blend">
|
2010-08-10 19:21:34 -07:00
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-09-09 14:42:43 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="FramebufferBlendActivity"
|
|
|
|
|
android:label="_FramebufferBlend">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
|
2010-08-16 20:26:20 -07:00
|
|
|
|
<activity
|
|
|
|
|
android:name="StackActivity"
|
|
|
|
|
android:label="_Stacks">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2010-06-15 18:03:40 -07:00
|
|
|
|
</application>
|
|
|
|
|
</manifest>
|