mirror of https://github.com/kurisufriend/Clover
parent
674a1804e6
commit
59f23b2d8c
@ -0,0 +1,95 @@ |
||||
/* |
||||
* Clover - 4chan browser https://github.com/Floens/Clover/
|
||||
* Copyright (C) 2014 Floens |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU General Public License as published by |
||||
* the Free Software Foundation, either version 3 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
package org.floens.chan.ui.view; |
||||
|
||||
import android.content.Context; |
||||
import android.graphics.Canvas; |
||||
import android.graphics.Rect; |
||||
import android.graphics.drawable.Drawable; |
||||
import android.util.AttributeSet; |
||||
|
||||
import org.floens.chan.R; |
||||
import org.floens.chan.core.model.PostImage; |
||||
|
||||
public class PostImageThumbnailView extends ThumbnailView { |
||||
private PostImage postImage; |
||||
private Drawable playIcon; |
||||
private Rect bounds = new Rect(); |
||||
private float ratio = 0f; |
||||
|
||||
public PostImageThumbnailView(Context context) { |
||||
this(context, null); |
||||
} |
||||
|
||||
public PostImageThumbnailView(Context context, AttributeSet attrs) { |
||||
this(context, attrs, 0); |
||||
} |
||||
|
||||
@SuppressWarnings("deprecation") |
||||
public PostImageThumbnailView(Context context, AttributeSet attrs, int defStyle) { |
||||
super(context, attrs, defStyle); |
||||
|
||||
playIcon = getResources().getDrawable(R.drawable.ic_play_circle_outline_white_24dp); |
||||
} |
||||
|
||||
public void setPostImage(PostImage postImage, int width, int height) { |
||||
if (this.postImage != postImage) { |
||||
this.postImage = postImage; |
||||
|
||||
if (postImage != null) { |
||||
setUrl(postImage.thumbnailUrl, width, height); |
||||
} else { |
||||
setUrl(null, width, height); |
||||
} |
||||
} |
||||
} |
||||
|
||||
public void setRatio(float ratio) { |
||||
this.ratio = ratio; |
||||
} |
||||
|
||||
@Override |
||||
public void draw(Canvas canvas) { |
||||
super.draw(canvas); |
||||
|
||||
if (postImage != null && postImage.type == PostImage.Type.MOVIE) { |
||||
int x = (int) (getWidth() / 2.0 - playIcon.getIntrinsicWidth() / 2.0); |
||||
int y = (int) (getHeight() / 2.0 - playIcon.getIntrinsicHeight() / 2.0); |
||||
|
||||
bounds.set(x, y, x + playIcon.getIntrinsicWidth(), y + playIcon.getIntrinsicHeight()); |
||||
playIcon.setBounds(bounds); |
||||
playIcon.draw(canvas); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { |
||||
if (ratio == 0f) { |
||||
super.onMeasure(widthMeasureSpec, heightMeasureSpec); |
||||
} else { |
||||
int heightMode = MeasureSpec.getMode(heightMeasureSpec); |
||||
if (MeasureSpec.getMode(widthMeasureSpec) == MeasureSpec.EXACTLY && (heightMode == MeasureSpec.UNSPECIFIED || heightMode == MeasureSpec.AT_MOST)) { |
||||
int width = MeasureSpec.getSize(widthMeasureSpec); |
||||
|
||||
super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec((int) (width / ratio), MeasureSpec.EXACTLY)); |
||||
} else { |
||||
super.onMeasure(widthMeasureSpec, heightMeasureSpec); |
||||
} |
||||
} |
||||
} |
||||
} |
After Width: | Height: | Size: 500 B |
After Width: | Height: | Size: 351 B |
After Width: | Height: | Size: 699 B |
After Width: | Height: | Size: 1023 B |
After Width: | Height: | Size: 1.3 KiB |
Loading…
Reference in new issue