summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli B <abittin@gmail.com>2018-08-08 08:15:32 +0300
committerAli B <abittin@gmail.com>2018-08-08 08:29:28 +0300
commit425e0caea0505ea63cfcdd308b0c094f48b7ebba (patch)
treec8cf578f01e29f35310c76dbaecffaadad896624
parent1cbfa3f01e044af5f79c476b53f56dd9d919825a (diff)
ae: update resources againmm6.0
-- history rerewrite Change-Id: I4381f789133af4c752b5bcc934c778eb10d7bb64
-rw-r--r--assets/anim.gifbin0 -> 604507 bytes
-rw-r--r--res/drawable-nodpi/aicp_cool.jpgbin0 -> 15878 bytes
-rw-r--r--res/layout/hidden_img_layout.xml2
-rw-r--r--src/com/lordclockan/aicpextras/HiddenAnimActivity.java4
4 files changed, 3 insertions, 3 deletions
diff --git a/assets/anim.gif b/assets/anim.gif
new file mode 100644
index 000000000..6bc7eddc2
--- /dev/null
+++ b/assets/anim.gif
Binary files differ
diff --git a/res/drawable-nodpi/aicp_cool.jpg b/res/drawable-nodpi/aicp_cool.jpg
new file mode 100644
index 000000000..98bda8fa3
--- /dev/null
+++ b/res/drawable-nodpi/aicp_cool.jpg
Binary files differ
diff --git a/res/layout/hidden_img_layout.xml b/res/layout/hidden_img_layout.xml
index 57da3a47e..7aca10e4f 100644
--- a/res/layout/hidden_img_layout.xml
+++ b/res/layout/hidden_img_layout.xml
@@ -9,6 +9,6 @@
android:id="@+id/hidden_img"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:src="@drawable/aicp_hidden" />
+ android:src="@drawable/aicp_cool" />
</LinearLayout>
diff --git a/src/com/lordclockan/aicpextras/HiddenAnimActivity.java b/src/com/lordclockan/aicpextras/HiddenAnimActivity.java
index e8f97ed53..9ca60e7c4 100644
--- a/src/com/lordclockan/aicpextras/HiddenAnimActivity.java
+++ b/src/com/lordclockan/aicpextras/HiddenAnimActivity.java
@@ -28,7 +28,7 @@ public class HiddenAnimActivity extends Activity {
setContentView(R.layout.animgif_layout);
gifView = (GifWebView) findViewById(R.id.gif_view);
- gifView.setGifAssetPath("file:///android_asset/yoga.gif");
+ gifView.setGifAssetPath("file:///android_asset/anim.gif");
Snackbar snackbar = Snackbar
.make(gifView, R.string.hidden_anim_activity_title, Snackbar.LENGTH_LONG)
@@ -55,7 +55,7 @@ public class HiddenAnimActivity extends Activity {
public void onShow(DialogInterface d) {
ImageView image = (ImageView) dialog.findViewById(R.id.hidden_img);
Bitmap icon = BitmapFactory.decodeResource(getResources(),
- R.drawable.aicp_hidden);
+ R.drawable.aicp_cool);
float imageWidthInPX = (float)image.getWidth();
LinearLayout.LayoutParams layoutParams =