Skip to content

Commit 5f36514

Browse files
committed
Update image logo path.
1 parent 509b02f commit 5f36514

19 files changed

+40
-42
lines changed

demo/src/com/androidquery/test/ListenerTestActivity.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public void onClick(View v) {
7979
public void asyncPost(){
8080

8181
//String url = "http://www.google.com/uds/GnewsSearch";
82-
String url = "http://www.vikispot.com/api/likes";
82+
String url = "http://www.androidquery.com/api/likes";
8383

8484
Map<String, Object> params = new HashMap<String, Object>();
8585
params.put("spotId", "1677246");
@@ -94,7 +94,7 @@ public void asyncBytes(){
9494

9595
//fetch a remote resource in raw bytes
9696

97-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
97+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
9898

9999
/*
100100
aq.ajax(url, byte[].class, new AjaxCallback<byte[]>() {
@@ -118,7 +118,7 @@ public void asyncBitmap(){
118118

119119
//fetch a image over the network
120120

121-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
121+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
122122

123123
aq.ajax(url, Bitmap.class, new AjaxCallback<Bitmap>() {
124124

@@ -266,11 +266,11 @@ public void reloadImage(View view){
266266

267267

268268
/*
269-
aq.id(R.id.image1).image("http://www.vikispot.com/z/images/vikispot/android-w.png");
269+
aq.id(R.id.image1).image("http://www.androidquery.com/z/images/vikispot/android-w.png");
270270
271271
boolean memCache = false;
272272
boolean fileCache = true;
273-
aq.id(R.id.image1).image("http://www.vikispot.com/z/images/vikispot/android-w.png", memCache, fileCache);
273+
aq.id(R.id.image1).image("http://www.androidquery.com/z/images/vikispot/android-w.png", memCache, fileCache);
274274
*/
275275

276276
/*
@@ -294,7 +294,7 @@ public void callback(String url, ImageView iv, Bitmap bm, AjaxStatus status){
294294
};
295295
*/
296296

297-
//String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
297+
//String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
298298
//String imageUrl = "http://lh6.ggpht.com/hgQVg7upCNxcSqJ9T2XabDm9d6IsRjI2lXDKJ03vHSlg5nXDV-2Actla3H8kCVCKdAu5-8-xDAXpxl_9";
299299
//String imageUrl = "http://farm6.static.flickr.com/5035/5802797131_a729dac808_b.jpg";
300300
String imageUrl = "http://a.b.com/invalid.jpg";

demo/src/com/androidquery/test/async/AjaxAuthActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public void auth_twitter_update(){
143143

144144
}
145145

146-
private String UPLOAD_IMAGE = "http://www.vikispot.com/z/images/vikispot/android-w.png";
146+
private String UPLOAD_IMAGE = "http://www.androidquery.com/z/images/vikispot/android-w.png";
147147
public void auth_twitter_upload(){
148148

149149
File file = aq.getCachedFile(UPLOAD_IMAGE);

demo/src/com/androidquery/test/async/AjaxLoadingActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public void callback(String url, String html, AjaxStatus status) {
112112

113113
public void async_bytes(){
114114

115-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
115+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
116116

117117
aq.progress(R.id.progress).ajax(url, byte[].class, new AjaxCallback<byte[]>() {
118118

demo/src/com/androidquery/test/image/ImageLoadingActivity.java

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected void onCreate(Bundle savedInstanceState) {
7272
aq.id(R.id.go_run).gone();
7373
image_button();
7474
}else if("image_send".equals(type)){
75-
aq.cache("http://www.vikispot.com/z/images/vikispot/android-w.png", 0);
75+
aq.cache("http://www.androidquery.com/z/images/vikispot/android-w.png", 0);
7676
}
7777

7878

@@ -92,7 +92,7 @@ protected void runSource(){
9292

9393
public void image_simple(){
9494

95-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
95+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
9696
aq.id(R.id.image).progress(R.id.progress).image(url);
9797

9898
}
@@ -102,7 +102,7 @@ public void image_cache(){
102102
boolean memCache = false;
103103
boolean fileCache = true;
104104

105-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
105+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
106106
aq.id(R.id.image).progress(R.id.progress).image(url, memCache, fileCache);
107107
}
108108

@@ -117,7 +117,7 @@ public void image_down(){
117117

118118
public void image_fallback(){
119119

120-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/xyz.png";
120+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/xyz.png";
121121
aq.id(R.id.image).progress(R.id.progress).image(imageUrl, true, true, 0, R.drawable.image_missing);
122122

123123
}
@@ -179,15 +179,15 @@ public void image_progress_bar(){
179179

180180
public void image_animation(){
181181

182-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
182+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
183183
aq.id(R.id.image).progress(R.id.progress).image(imageUrl, true, true, 0, 0, null, AQuery.FADE_IN);
184184

185185
}
186186

187187

188188
public void image_animation2(){
189189

190-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
190+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
191191
aq.id(R.id.image).progress(R.id.progress).image(imageUrl, true, true, 0, 0, null, R.anim.slide_in_left);
192192

193193
}
@@ -201,7 +201,7 @@ public void image_ratio(){
201201

202202
public void image_round(){
203203

204-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
204+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
205205

206206
ImageOptions options = new ImageOptions();
207207
options.round = 15;
@@ -224,7 +224,7 @@ public void image_file(){
224224

225225
public void image_custom(){
226226

227-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
227+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
228228
final int tint = 0x77AA0000;
229229

230230
aq.id(R.id.image).progress(R.id.progress).visible().image(imageUrl, true, true, 0, 0, new BitmapAjaxCallback(){
@@ -270,7 +270,7 @@ public void callback(String url, ImageView iv, Bitmap bm, AjaxStatus status){
270270

271271
public void image_dup(){
272272

273-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
273+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
274274
aq.id(R.id.image).image(imageUrl, false, false);
275275

276276
//no network fetch for 2nd request, image will be shown when first request is completed
@@ -300,7 +300,7 @@ public void image_advance(){
300300

301301
public void image_access_file(){
302302

303-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
303+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
304304
File file = aq.getCachedFile(imageUrl);
305305

306306
if(file != null){
@@ -311,7 +311,7 @@ public void image_access_file(){
311311

312312
public void image_access_memory(){
313313

314-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
314+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
315315
Bitmap bm = aq.getCachedImage(imageUrl);
316316

317317
if(bm != null){
@@ -337,7 +337,7 @@ public void image_pre_cache(){
337337

338338
public void image_nocache(){
339339

340-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
340+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
341341

342342
//force a network refetch without any caching
343343
aq.id(R.id.image).image(url, false, false);
@@ -368,7 +368,7 @@ public void image_cache_dir(){
368368

369369
AQUtility.debug("cache dir exist", cacheDir.exists());
370370

371-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
371+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
372372
aq.cache(url, 0);
373373

374374
File file = AQUtility.getCacheFile(AQUtility.getCacheDir(this, AQuery.CACHE_DEFAULT), url);
@@ -380,7 +380,7 @@ public void image_cache_dir(){
380380

381381
public void image_send(){
382382

383-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
383+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
384384
File file = aq.makeSharedFile(url, "android.png");
385385

386386
if(file != null){
@@ -464,7 +464,7 @@ public void image_auto_rotate(){
464464

465465
String imageUrl = "http://res.dbkon.co.kr/resource/201302091360376386575001.jpg";
466466

467-
//imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
467+
//imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
468468

469469
BitmapAjaxCallback cb = new BitmapAjaxCallback();
470470
cb.url(imageUrl).targetWidth(300).rotate(true);

demo/src/com/androidquery/test/source/async_bytes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void asyncBytes(){
22

3-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44

55
aq.ajax(url, byte[].class, new AjaxCallback<byte[]>() {
66

demo/src/com/androidquery/test/source/image_access_file

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_access(){
22

3-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44
File file = aq.getCachedFile(imageUrl);
55

66
if(file != null){

demo/src/com/androidquery/test/source/image_access_memory

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_access_memory(){
22

3-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44
Bitmap bm = aq.getCachedImage(imageUrl);
55

66
if(bm != null){
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_animation(){
22

3-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44
aq.id(R.id.image).image(imageUrl, true, true, 0, null, 0, AQuery.FADE_IN);
55

66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_animation2(){
22

3-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44
aq.id(R.id.image).image(imageUrl, true, true, 0, null, 0, R.anim.slide_in_left);
55

66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_button(){
22

3-
String tb = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String tb = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44
aq.id(R.id.button).image(tb);
55

66
}

demo/src/com/androidquery/test/source/image_cache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
boolean memCache = false;
44
boolean fileCache = true;
55

6-
aq.id(R.id.image).image("http://www.vikispot.com/z/images/vikispot/android-w.png", memCache, fileCache);
6+
aq.id(R.id.image).image("http://www.androidquery.com/z/images/vikispot/android-w.png", memCache, fileCache);
77
}

demo/src/com/androidquery/test/source/image_custom

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_custom(){
22

3-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44
final int tint = 0x77AA0000;
55

66
aq.id(R.id.image).image(imageUrl, true, true, 0, 0, new BitmapAjaxCallback(){

demo/src/com/androidquery/test/source/image_dup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_dup(){
22

3-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44
aq.id(R.id.image).image(imageUrl, false, false);
55

66
//no network fetch for 2nd request, image will be shown when first request is completed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_fallback(){
22

3-
String imageUrl = "http://www.vikispot.com/z/images/vikispot/xyz.png";
3+
String imageUrl = "http://www.androidquery.com/z/images/vikispot/xyz.png";
44
aq.id(R.id.image).image(imageUrl, true, true, 0, R.drawable.image_missing);
55

66
}

demo/src/com/androidquery/test/source/image_nocache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_nocache(){
22

3-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44

55
//force a network refetch without any caching
66
aq.id(R.id.image).image(url, false, false);

demo/src/com/androidquery/test/source/image_round

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_round(){
22

3-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44

55
ImageOptions options = new ImageOptions();
66
options.round = 15;

demo/src/com/androidquery/test/source/image_send

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_send(){
22

3-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44
File file = aq.makeSharedFile(url, "android.png");
55

66
if(file != null){
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public void image_simple(){
22

3-
String url = "http://www.vikispot.com/z/images/vikispot/android-w.png";
3+
String url = "http://www.androidquery.com/z/images/vikispot/android-w.png";
44
aq.id(R.id.image).image(url);
55

66
}

dist/build-full.jardesc

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<jardesc>
3-
<jar path="AndroidQuery/dist/android-query-full.0.25.6-beta.jar"/>
3+
<jar path="SodaCardKiosk/libs/aigens.jar"/>
44
<options buildIfNeeded="true" compress="true" descriptionLocation="/AndroidQuery/dist/build-full.jardesc" exportErrors="true" exportWarnings="true" includeDirectoryEntries="false" overwrite="true" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
55
<storedRefactorings deprecationInfo="true" structuralOnly="false"/>
66
<selectedProjects/>
@@ -10,9 +10,7 @@
1010
<packagesToUnSeal/>
1111
</sealing>
1212
</manifest>
13-
<selectedElements exportClassFiles="true" exportJavaFiles="true" exportOutputFolder="false">
14-
<javaElement handleIdentifier="=AndroidQuery/auth"/>
15-
<javaElement handleIdentifier="=AndroidQuery/src"/>
16-
<javaElement handleIdentifier="=AndroidQuery/beta"/>
13+
<selectedElements exportClassFiles="true" exportJavaFiles="false" exportOutputFolder="false">
14+
<javaElement handleIdentifier="=AigensAndroid/src"/>
1715
</selectedElements>
1816
</jardesc>

0 commit comments

Comments
 (0)