Added sample project
4
.gitignore
vendored
|
@ -9,8 +9,8 @@
|
|||
*.class
|
||||
|
||||
# generated files
|
||||
bin/
|
||||
gen/
|
||||
*/bin/
|
||||
*/gen/
|
||||
|
||||
# Local configuration file (sdk path, etc)
|
||||
local.properties
|
||||
|
|
66
README.md
|
@ -6,71 +6,7 @@ Whatsapp like implementation for emjoicons which appear as a popup over the sof
|
|||
|
||||
## Example
|
||||
|
||||
|
||||
```xml
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:emojicon="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:id="@+id/root_view"
|
||||
android:orientation="vertical">
|
||||
|
||||
<github.ankushsachdeva.emojicon.EmojiconEditText
|
||||
android:id="@+id/editEmojicon"
|
||||
android:text="I \ue32d emojicon"
|
||||
emojicon:emojiconSize="28sp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
```
|
||||
|
||||
```java
|
||||
// Give the topmost view of your activity layout hierarchy. This will be used to measure soft keyboard height
|
||||
PopupWindow popup = new EmojiconsPopup(rootView, getActivity());
|
||||
|
||||
//Will automatically set size according to the soft keyboard size
|
||||
popup.setSizeForSoftKeyboard();
|
||||
|
||||
//Set on emojicon click listener
|
||||
popup.setOnEmojiconClickedListener(new OnEmojiconClickedListener() {
|
||||
|
||||
@Override
|
||||
public void onEmojiconClicked(Emojicon emojicon) {
|
||||
emojiconEditText.append(emojicon.getEmoji());
|
||||
}
|
||||
});
|
||||
|
||||
//Set on backspace click listener
|
||||
popup.setOnEmojiconBackspaceClickedListener(new OnEmojiconBackspaceClickedListener() {
|
||||
|
||||
@Override
|
||||
public void onEmojiconBackspaceClicked(View v) {
|
||||
KeyEvent event = new KeyEvent(
|
||||
0, 0, 0, KeyEvent.KEYCODE_DEL, 0, 0, 0, 0, KeyEvent.KEYCODE_ENDCALL);
|
||||
emojiconEditText.dispatchKeyEvent(event);
|
||||
}
|
||||
});
|
||||
|
||||
//Set listener for keyboard open/close
|
||||
popup.setOnSoftKeyboardOpenCloseListener(new OnSoftKeyboardOpenCloseListener() {
|
||||
|
||||
@Override
|
||||
public void onKeyboardOpen(int keyBoardHeight) {
|
||||
if(!popup.isShowing()){
|
||||
popup.showAtBottom();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onKeyboardClose() {
|
||||
if(popup.isShowing())
|
||||
popup.dismiss();
|
||||
}
|
||||
});
|
||||
|
||||
//To show popup manually you can call popup.showAtBottom();
|
||||
//To show popup when the soft keyboard is not already visible, use popup.showAtBottomPending()
|
||||
```
|
||||
UPDATE: An example project has been made.
|
||||
|
||||
Note: You can change the size of emojis in XML layout through attribute `emojiconSize`.
|
||||
|
||||
|
|
28
example/AndroidManifest.xml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.example.emojiconsample"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="8"
|
||||
android:targetSdkVersion="18" />
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/AppTheme" >
|
||||
<activity
|
||||
android:name="com.example.emojiconsample.MainActivity"
|
||||
android:windowSoftInputMode="stateHidden"
|
||||
android:label="@string/app_name" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
BIN
example/ic_launcher-web.png
Normal file
After Width: | Height: | Size: 50 KiB |
20
example/proguard-project.txt
Normal file
|
@ -0,0 +1,20 @@
|
|||
# To enable ProGuard in your project, edit project.properties
|
||||
# to define the proguard.config property as described in that file.
|
||||
#
|
||||
# Add project specific ProGuard rules here.
|
||||
# By default, the flags in this file are appended to flags specified
|
||||
# in ${sdk.dir}/tools/proguard/proguard-android.txt
|
||||
# You can edit the include path and order by changing the ProGuard
|
||||
# include property in project.properties.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# Add any project specific keep options here:
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
15
example/project.properties
Normal file
|
@ -0,0 +1,15 @@
|
|||
# This file is automatically generated by Android Tools.
|
||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||
#
|
||||
# This file must be checked in Version Control Systems.
|
||||
#
|
||||
# To customize properties used by the Ant build system edit
|
||||
# "ant.properties", and override values to adapt the script to your
|
||||
# project structure.
|
||||
#
|
||||
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
|
||||
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
|
||||
|
||||
# Project target.
|
||||
target=android-19
|
||||
android.library.reference.1=../lib
|
BIN
example/res/drawable-hdpi/ic_action_keyboard.png
Normal file
After Width: | Height: | Size: 359 B |
BIN
example/res/drawable-hdpi/ic_action_send_now.png
Normal file
After Width: | Height: | Size: 465 B |
BIN
example/res/drawable-hdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
example/res/drawable-hdpi/smiley.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
example/res/drawable-mdpi/ic_action_keyboard.png
Normal file
After Width: | Height: | Size: 433 B |
BIN
example/res/drawable-mdpi/ic_action_send_now.png
Normal file
After Width: | Height: | Size: 332 B |
BIN
example/res/drawable-mdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
example/res/drawable-mdpi/smiley.png
Normal file
After Width: | Height: | Size: 987 B |
BIN
example/res/drawable-xhdpi/ic_action_keyboard.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
example/res/drawable-xhdpi/ic_action_send_now.png
Normal file
After Width: | Height: | Size: 578 B |
BIN
example/res/drawable-xhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
example/res/drawable-xhdpi/smiley.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
example/res/drawable-xxhdpi/ic_action_keyboard.png
Normal file
After Width: | Height: | Size: 472 B |
BIN
example/res/drawable-xxhdpi/ic_action_send_now.png
Normal file
After Width: | Height: | Size: 759 B |
BIN
example/res/drawable-xxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
example/res/drawable-xxhdpi/smiley.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
39
example/res/layout/activity_main.xml
Normal file
|
@ -0,0 +1,39 @@
|
|||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:emojicon="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/root_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
>
|
||||
<ImageView
|
||||
android:id="@+id/emoji_btn"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="4dp"
|
||||
android:src="@drawable/smiley"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_alignParentLeft="true"
|
||||
/>
|
||||
<ImageView
|
||||
android:id="@+id/submit_btn"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="4dp"
|
||||
android:src="@drawable/ic_action_send_now"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_alignParentRight="true"
|
||||
/>
|
||||
<github.ankushsachdeva.emojicon.EmojiconEditText
|
||||
android:id="@+id/emojicon_edit_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_toRightOf="@id/emoji_btn"
|
||||
android:layout_toLeftOf="@id/submit_btn"
|
||||
emojicon:emojiconSize="28sp" />
|
||||
<ListView
|
||||
android:id="@+id/lv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_above="@id/emojicon_edit_text"
|
||||
></ListView>
|
||||
</RelativeLayout>
|
7
example/res/layout/listview_row_layout.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<github.ankushsachdeva.emojicon.EmojiconTextView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:emojicon="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
emojicon:emojiconSize="28sp"
|
||||
/>
|
8
example/res/values-sw600dp/dimens.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<resources>
|
||||
|
||||
<!--
|
||||
Customize dimensions originally defined in res/values/dimens.xml (such as
|
||||
screen margins) for sw600dp devices (e.g. 7" tablets) here.
|
||||
-->
|
||||
|
||||
</resources>
|
9
example/res/values-sw720dp-land/dimens.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<resources>
|
||||
|
||||
<!--
|
||||
Customize dimensions originally defined in res/values/dimens.xml (such as
|
||||
screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.
|
||||
-->
|
||||
<dimen name="activity_horizontal_margin">128dp</dimen>
|
||||
|
||||
</resources>
|
11
example/res/values-v11/styles.xml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<resources>
|
||||
|
||||
<!--
|
||||
Base application theme for API 11+. This theme completely replaces
|
||||
AppBaseTheme from res/values/styles.xml on API 11+ devices.
|
||||
-->
|
||||
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
|
||||
<!-- API 11 theme customizations can go here. -->
|
||||
</style>
|
||||
|
||||
</resources>
|
12
example/res/values-v14/styles.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<resources>
|
||||
|
||||
<!--
|
||||
Base application theme for API 14+. This theme completely replaces
|
||||
AppBaseTheme from BOTH res/values/styles.xml and
|
||||
res/values-v11/styles.xml on API 14+ devices.
|
||||
-->
|
||||
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
|
||||
<!-- API 14 theme customizations can go here. -->
|
||||
</style>
|
||||
|
||||
</resources>
|
7
example/res/values/dimens.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<resources>
|
||||
|
||||
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||
<dimen name="activity_vertical_margin">16dp</dimen>
|
||||
|
||||
</resources>
|
8
example/res/values/strings.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<string name="app_name">EmojiconSample</string>
|
||||
<string name="action_settings">Settings</string>
|
||||
<string name="hello_world">Hello world!</string>
|
||||
|
||||
</resources>
|
20
example/res/values/styles.xml
Normal file
|
@ -0,0 +1,20 @@
|
|||
<resources>
|
||||
|
||||
<!--
|
||||
Base application theme, dependent on API level. This theme is replaced
|
||||
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
|
||||
-->
|
||||
<style name="AppBaseTheme" parent="android:Theme.Light">
|
||||
<!--
|
||||
Theme customizations available in newer API levels can go in
|
||||
res/values-vXX/styles.xml, while customizations related to
|
||||
backward-compatibility can go here.
|
||||
-->
|
||||
</style>
|
||||
|
||||
<!-- Application theme. -->
|
||||
<style name="AppTheme" parent="AppBaseTheme">
|
||||
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
|
||||
</style>
|
||||
|
||||
</resources>
|
157
example/src/com/example/emojiconsample/MainActivity.java
Normal file
|
@ -0,0 +1,157 @@
|
|||
package com.example.emojiconsample;
|
||||
|
||||
import github.ankushsachdeva.emojicon.EmojiconEditText;
|
||||
import github.ankushsachdeva.emojicon.EmojiconGridView.OnEmojiconClickedListener;
|
||||
import github.ankushsachdeva.emojicon.EmojiconsPopup;
|
||||
import github.ankushsachdeva.emojicon.EmojiconsPopup.OnEmojiconBackspaceClickedListener;
|
||||
import github.ankushsachdeva.emojicon.EmojiconsPopup.OnSoftKeyboardOpenCloseListener;
|
||||
import github.ankushsachdeva.emojicon.emoji.Emojicon;
|
||||
import android.app.Activity;
|
||||
import android.content.Context;
|
||||
import android.os.Bundle;
|
||||
import android.view.KeyEvent;
|
||||
import android.view.Menu;
|
||||
import android.view.View;
|
||||
import android.view.View.OnClickListener;
|
||||
import android.view.inputmethod.InputMethodManager;
|
||||
import android.widget.ArrayAdapter;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.ListView;
|
||||
import android.widget.PopupWindow.OnDismissListener;
|
||||
|
||||
public class MainActivity extends Activity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_main);
|
||||
ListView lv = (ListView) findViewById(R.id.lv);
|
||||
final ArrayAdapter<String> mAdapter = new ArrayAdapter<String>(this, R.layout.listview_row_layout);
|
||||
lv.setAdapter(mAdapter);
|
||||
final EmojiconEditText emojiconEditText = (EmojiconEditText) findViewById(R.id.emojicon_edit_text);
|
||||
final View rootView = findViewById(R.id.root_view);
|
||||
final ImageView emojiButton = (ImageView) findViewById(R.id.emoji_btn);
|
||||
final ImageView submitButton = (ImageView) findViewById(R.id.submit_btn);
|
||||
|
||||
// Give the topmost view of your activity layout hierarchy. This will be used to measure soft keyboard height
|
||||
final EmojiconsPopup popup = new EmojiconsPopup(rootView, this);
|
||||
|
||||
//Will automatically set size according to the soft keyboard size
|
||||
popup.setSizeForSoftKeyboard();
|
||||
|
||||
//Set on emojicon click listener
|
||||
popup.setOnEmojiconClickedListener(new OnEmojiconClickedListener() {
|
||||
|
||||
@Override
|
||||
public void onEmojiconClicked(Emojicon emojicon) {
|
||||
emojiconEditText.append(emojicon.getEmoji());
|
||||
}
|
||||
});
|
||||
|
||||
//Set on backspace click listener
|
||||
popup.setOnEmojiconBackspaceClickedListener(new OnEmojiconBackspaceClickedListener() {
|
||||
|
||||
@Override
|
||||
public void onEmojiconBackspaceClicked(View v) {
|
||||
KeyEvent event = new KeyEvent(
|
||||
0, 0, 0, KeyEvent.KEYCODE_DEL, 0, 0, 0, 0, KeyEvent.KEYCODE_ENDCALL);
|
||||
emojiconEditText.dispatchKeyEvent(event);
|
||||
}
|
||||
});
|
||||
|
||||
//If the emoji popup is dismissed, change emojiButton to smiley icon
|
||||
popup.setOnDismissListener(new OnDismissListener() {
|
||||
|
||||
@Override
|
||||
public void onDismiss() {
|
||||
changeEmojiKeyboardIcon(emojiButton, R.drawable.smiley);
|
||||
}
|
||||
});
|
||||
|
||||
//If the text keyboard closes, also dismiss the emoji popup
|
||||
popup.setOnSoftKeyboardOpenCloseListener(new OnSoftKeyboardOpenCloseListener() {
|
||||
|
||||
@Override
|
||||
public void onKeyboardOpen(int keyBoardHeight) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onKeyboardClose() {
|
||||
if(popup.isShowing())
|
||||
popup.dismiss();
|
||||
}
|
||||
});
|
||||
|
||||
//On emoji clicked, add it to edittext
|
||||
popup.setOnEmojiconClickedListener(new OnEmojiconClickedListener() {
|
||||
|
||||
@Override
|
||||
public void onEmojiconClicked(Emojicon emojicon) {
|
||||
emojiconEditText.append(emojicon.getEmoji());
|
||||
}
|
||||
});
|
||||
|
||||
//On backspace clicked, emulate the KEYCODE_DEL key event
|
||||
popup.setOnEmojiconBackspaceClickedListener(new OnEmojiconBackspaceClickedListener() {
|
||||
|
||||
@Override
|
||||
public void onEmojiconBackspaceClicked(View v) {
|
||||
KeyEvent event = new KeyEvent(
|
||||
0, 0, 0, KeyEvent.KEYCODE_DEL, 0, 0, 0, 0, KeyEvent.KEYCODE_ENDCALL);
|
||||
emojiconEditText.dispatchKeyEvent(event);
|
||||
}
|
||||
});
|
||||
|
||||
// To toggle between text keyboard and emoji keyboard keyboard(Popup)
|
||||
emojiButton.setOnClickListener(new OnClickListener() {
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
|
||||
//If popup is not showing => emoji keyboard is not visible, we need to show it
|
||||
if(!popup.isShowing()){
|
||||
|
||||
//If keyboard is visible, simply show the emoji popup
|
||||
if(popup.isKeyBoardOpen()){
|
||||
popup.showAtBottom();
|
||||
changeEmojiKeyboardIcon(emojiButton, R.drawable.ic_action_keyboard);
|
||||
}
|
||||
|
||||
//else, open the text keyboard first and immediately after that show the emoji popup
|
||||
else{
|
||||
emojiconEditText.setFocusableInTouchMode(true);
|
||||
emojiconEditText.requestFocus();
|
||||
popup.showAtBottomPending();
|
||||
final InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
||||
inputMethodManager.showSoftInput(emojiconEditText, InputMethodManager.SHOW_IMPLICIT);
|
||||
changeEmojiKeyboardIcon(emojiButton, R.drawable.ic_action_keyboard);
|
||||
}
|
||||
}
|
||||
|
||||
//If popup is showing, simply dismiss it to show the undelying text keyboard
|
||||
else{
|
||||
popup.dismiss();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
//On submit, add the edittext text to listview and clear the edittext
|
||||
submitButton.setOnClickListener(new OnClickListener() {
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
String newText = emojiconEditText.getText().toString();
|
||||
emojiconEditText.getText().clear();
|
||||
mAdapter.add(newText);
|
||||
mAdapter.notifyDataSetChanged();
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private void changeEmojiKeyboardIcon(ImageView iconToBeChanged, int drawableResourceId){
|
||||
iconToBeChanged.setImageResource(drawableResourceId);
|
||||
}
|
||||
|
||||
}
|
BIN
lib/libs/android-support-v4.jar
Normal file
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 227 B After Width: | Height: | Size: 227 B |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 250 B After Width: | Height: | Size: 250 B |
Before Width: | Height: | Size: 197 B After Width: | Height: | Size: 197 B |
Before Width: | Height: | Size: 98 B After Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 94 B After Width: | Height: | Size: 94 B |
Before Width: | Height: | Size: 941 B After Width: | Height: | Size: 941 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 429 B After Width: | Height: | Size: 429 B |
Before Width: | Height: | Size: 838 B After Width: | Height: | Size: 838 B |
Before Width: | Height: | Size: 100 B After Width: | Height: | Size: 100 B |
Before Width: | Height: | Size: 98 B After Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 100 B After Width: | Height: | Size: 100 B |
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
Before Width: | Height: | Size: 656 B After Width: | Height: | Size: 656 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 912 B After Width: | Height: | Size: 912 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1,020 B After Width: | Height: | Size: 1,020 B |
Before Width: | Height: | Size: 905 B After Width: | Height: | Size: 905 B |
Before Width: | Height: | Size: 759 B After Width: | Height: | Size: 759 B |
Before Width: | Height: | Size: 458 B After Width: | Height: | Size: 458 B |
Before Width: | Height: | Size: 936 B After Width: | Height: | Size: 936 B |
Before Width: | Height: | Size: 828 B After Width: | Height: | Size: 828 B |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 963 B After Width: | Height: | Size: 963 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 805 B After Width: | Height: | Size: 805 B |
Before Width: | Height: | Size: 775 B After Width: | Height: | Size: 775 B |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 204 B After Width: | Height: | Size: 204 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 945 B After Width: | Height: | Size: 945 B |
Before Width: | Height: | Size: 930 B After Width: | Height: | Size: 930 B |