Skip to content

Commit

Permalink
Merge pull request sephiroth74#75 from sephiroth74/overlays
Browse files Browse the repository at this point in the history
Overlays
  • Loading branch information
sephiroth74 committed Jun 12, 2015
2 parents a59ba50 + 20d53ee commit c13ffbc
Show file tree
Hide file tree
Showing 14 changed files with 2,017 additions and 1,411 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
buildscript {
repositories {
mavenCentral()
jcenter()
mavenLocal()
}

dependencies {
classpath 'com.android.tools.build:gradle:0.12.2'
classpath 'com.android.tools.build:gradle:1.2.3'
}
}

Expand All @@ -26,5 +26,5 @@ allprojects {
}

task wrapper(type: Wrapper) {
gradleVersion = '1.12'
gradleVersion = '2.4'
}
3 changes: 2 additions & 1 deletion demo/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:hardwareAccelerated="true" >
android:hardwareAccelerated="true"
android:largeHeap="true">
<activity android:name=".ImageViewTestActivity"
android:configChanges="orientation|keyboardHidden|screenSize">
<intent-filter>
Expand Down
Binary file added demo/assets/images/circle-black-large.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added demo/assets/images/circle-black-medium.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions demo/build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@

apply plugin: 'android'
apply plugin: 'com.android.application'

dependencies {
compile project(':library')
}

android {
compileSdkVersion 19
buildToolsVersion '20.0.0'
compileSdkVersion 21
buildToolsVersion '22.0.1'

defaultConfig {
versionCode 1
versionName '1.0.0'
minSdkVersion 9
targetSdkVersion 19
targetSdkVersion 21
}

sourceSets {
Expand Down
7 changes: 7 additions & 0 deletions demo/res/layout/main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
android:layout_height="fill_parent"
android:orientation="vertical">

<!--<it.sephiroth.android.library.imagezoom.test.ImageViewOverlay-->
<!--android:padding="0dip"-->
<!--android:id="@+id/image"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="0dp"-->
<!--android:layout_weight="1" />-->

<it.sephiroth.android.library.imagezoom.ImageViewTouch
android:id="@+id/image"
android:layout_width="match_parent"
Expand Down
Loading

0 comments on commit c13ffbc

Please sign in to comment.