summaryrefslogtreecommitdiffstats
path: root/res/layout/camera_filmstrip.xml
diff options
context:
space:
mode:
authorAngus Kong <shkong@google.com>2013-12-10 11:06:18 -0800
committerAngus Kong <shkong@google.com>2013-12-10 16:43:31 -0800
commit01054e922aa547b937a71131ad04c6bd15356240 (patch)
treef97b9e7c89c9732e499baa32ea4000c9e11e2fc7 /res/layout/camera_filmstrip.xml
parentb95699ed89d02a465950c48ea9b6147d90c80389 (diff)
downloadandroid_packages_apps_Camera2-01054e922aa547b937a71131ad04c6bd15356240.tar.gz
android_packages_apps_Camera2-01054e922aa547b937a71131ad04c6bd15356240.tar.bz2
android_packages_apps_Camera2-01054e922aa547b937a71131ad04c6bd15356240.zip
Move/refactor filmstrip related files around.
1. Rename filmstrip.FilmstripDataAdapter to filmstrip.DataAdapter. 2. Rename filmstrip.FilmstripImageData to filmstrip.ImageData. 3. Move filmstrip.FilmstripListener to filmstrip.FilmstripController.Listener. 4. Add FilmstripContentPanel interface. 5. Move ui.FilmstripView to widget.FilmstripView 6. Move ui.FilmstrpLayout to widget.Filmstripview 7. Move ui.FilmstripBottomControls to widget.FilmstripBottomLayout 8. Extracted interface from widget.FilmstripBottomLayout as filmstrip.BottomControls Change-Id: I83bdd89e2a48a98002a4fed7dab011b28036d1a0
Diffstat (limited to 'res/layout/camera_filmstrip.xml')
-rw-r--r--res/layout/camera_filmstrip.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/res/layout/camera_filmstrip.xml b/res/layout/camera_filmstrip.xml
index 7101fd985..2ea4f416e 100644
--- a/res/layout/camera_filmstrip.xml
+++ b/res/layout/camera_filmstrip.xml
@@ -15,7 +15,7 @@
limitations under the License.
-->
-<com.android.camera.ui.FilmstripLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<com.android.camera.widget.FilmstripLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/filmstrip_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -26,7 +26,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent" >
- <com.android.camera.ui.FilmstripView
+ <com.android.camera.widget.FilmstripView
android:id="@+id/filmstrip_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
@@ -68,4 +68,4 @@
android:layout_gravity="bottom|center_horizontal" />
</LinearLayout>
</FrameLayout>
-</com.android.camera.ui.FilmstripLayout>
+</com.android.camera.widget.FilmstripLayout>