- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我真的需要帮助。我有一个漫画书类型的独立应用程序。使用 onfling 手势来回翻页来翻转图像但是,我迫切需要能够缩放每个图像/面板。这是一个扩展的画廊:请帮助我在此代码中添加缩放功能!谢谢请不要让我引用已经在 stackoverflow 上发布的内容,我已经阅读了所有内容,但到目前为止它对我没有帮助......
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.res.TypedArray;
import android.net.Uri;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.BaseAdapter;
import android.widget.Gallery.LayoutParams;
import android.widget.ImageView;
import android.widget.Toast;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mygallery gallery = (mygallery) findViewById(R.id.thisgallery);
gallery.setAdapter(new AddImgAdp(this));
gallery.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
Toast.makeText(main.this, "Page " + position, Toast.LENGTH_SHORT).show();
}
});
}
public class AddImgAdp extends BaseAdapter {
int GalItemBg;
private Context cont;
private Integer[] Imgid = {
R.drawable.s1,
R.drawable.s1a,
R.drawable.s1b,
R.drawable.s1b1,
R.drawable.s1b2,
R.drawable.s1b3,
R.drawable.s1c,
R.drawable.s1s,
R.drawable.s2,
R.drawable.s3,
R.drawable.s4,
R.drawable.s5,
R.drawable.s6,
R.drawable.s7,
R.drawable.s8,
R.drawable.s9,
R.drawable.s10,
R.drawable.s11,
R.drawable.s12,
R.drawable.s13,
R.drawable.s14,
R.drawable.s15,
R.drawable.s16,
R.drawable.s17,
R.drawable.s18,
R.drawable.s19,
R.drawable.s20,
R.drawable.s21,
R.drawable.s22,
R.drawable.s23,
R.drawable.s24,
R.drawable.s25,
R.drawable.s26,
R.drawable.s27,
R.drawable.s28,
R.drawable.s29,
R.drawable.s30,
R.drawable.s31,
R.drawable.s32,
R.drawable.s33,
R.drawable.s34,
R.drawable.s35,
R.drawable.s36,
R.drawable.s37,
R.drawable.s38,
R.drawable.s39,
R.drawable.s40,
R.drawable.s41,
R.drawable.s42,
R.drawable.s43,
R.drawable.s44,
R.drawable.s45,
R.drawable.s46,
R.drawable.s47,
R.drawable.s48,
R.drawable.s49,
R.drawable.s50,
R.drawable.s51,
R.drawable.s52,
R.drawable.s53,
R.drawable.s54,
R.drawable.s55,
R.drawable.s56,
R.drawable.s57,
R.drawable.s58,
R.drawable.s59,
R.drawable.s60,
R.drawable.s61,
R.drawable.s62,
R.drawable.s63,
R.drawable.s64,
R.drawable.s65,
R.drawable.s66,
R.drawable.s67,
R.drawable.s68,
R.drawable.s69,
R.drawable.s70,
R.drawable.s71,
R.drawable.s72,
R.drawable.s73,
R.drawable.s74,
R.drawable.s75,
R.drawable.s76,
R.drawable.s77,
R.drawable.s78,
R.drawable.s79,
R.drawable.s80,
R.drawable.s81,
R.drawable.s82,
R.drawable.s83,
R.drawable.s84,
R.drawable.s85,
R.drawable.s86,
R.drawable.s87,
R.drawable.s88,
R.drawable.s89,
R.drawable.s90,
R.drawable.s91,
R.drawable.s92,
R.drawable.s93,
R.drawable.s94,
R.drawable.s95,
R.drawable.s96,
R.drawable.s97,
R.drawable.s98,
R.drawable.s99,
R.drawable.s100,
R.drawable.s101,
R.drawable.s102,
R.drawable.s103,
R.drawable.s104,
R.drawable.s105,
R.drawable.s106,
R.drawable.s107,
R.drawable.s108,
R.drawable.s109,
R.drawable.s110,
R.drawable.s111,
R.drawable.s112,
R.drawable.s113,
R.drawable.s114,
R.drawable.s115,
R.drawable.s116,
R.drawable.s117,
R.drawable.s118,
R.drawable.s119,
R.drawable.s120,
R.drawable.s121,
R.drawable.s122,
R.drawable.s123,
R.drawable.s124,
R.drawable.s125,
R.drawable.s126,
R.drawable.s127,
R.drawable.s128,
R.drawable.s129,
R.drawable.s130,
R.drawable.s131,
R.drawable.s132,
R.drawable.s133,
R.drawable.s134,
R.drawable.s135,
R.drawable.s136,
R.drawable.s137,
R.drawable.s138,
R.drawable.s139,
R.drawable.s140,
R.drawable.s141,
R.drawable.s142,
R.drawable.s143,
R.drawable.s144,
R.drawable.s145,
R.drawable.s146,
R.drawable.s147,
R.drawable.s148};
public AddImgAdp(Context c) {
cont = c;
TypedArray typArray = obtainStyledAttributes(R.styleable.Gallery1);
GalItemBg = typArray.getResourceId(R.styleable.Gallery1_android_galleryItemBackground, 0);
typArray.recycle();
}
public int getCount() {
return Imgid.length;
}
public Object getItem(int position) {
return position;
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imgView = new ImageView(cont);
imgView.setImageResource(Imgid[position]);
imgView.setScaleType(ImageView.ScaleType.FIT_XY);
imgView.setBackgroundResource(0x0106000d);
imgView.setLayoutParams(new mygallery.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
return imgView;
}
}
}
和onfling覆盖:
import android.content.Context;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.MotionEvent;
import android.widget.Gallery;
public class mygallery extends Gallery {
public mygallery(Context ctx, AttributeSet attrSet) {
super(ctx, attrSet);
// TODO Auto-generated constructor stub
}
private boolean isScrollingLeft(MotionEvent e1, MotionEvent e2){
return e2.getX() > e1.getX();
}
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY){
int kEvent;
if(isScrollingLeft(e1, e2)){ //Check if scrolling left
kEvent = KeyEvent.KEYCODE_DPAD_LEFT;
}
else{ //Otherwise scrolling right
kEvent = KeyEvent.KEYCODE_DPAD_RIGHT;
}
onKeyDown(kEvent, null);
return true;
}
}
最佳答案
可以使用android的ScaleAnimation类来实现缩放效果。但问题是,动画实际上不会改变它所应用的 View 的大小/位置,这是一个很大的问题,因为你正在应用动画的 View 的点击将始终保持不变并且很快。然而,没有其他方法可以实现缩放效果 AFAIK。(至少在 3.0 之前的 android 版本中)。
关于安卓 Zoom Gallery 帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5692141/
我在学习如何缩放方面经历了一段痛苦的时光。为了学习,我一直在尝试制作树状图缩放。我正在使用这个 jsfiddle 示例( http://jsfiddle.net/6kEpp/1/ )并尝试将其应用于没
使用 orbitcontrols.js(带有 THREE.js),我想在代码中实现与旋转鼠标滚轮相同的效果。例如,我想调用 camera.zoomIn() 之类的东西,让它向目标移动一段设定的距离。有
我已经创建了 map ,如 this link 所示并且运行良好。 但问题是,它只能以一种方式放大(只会变大)。我怎样才能让它以任何一种方式工作? 可能就像我们在 google map 上(加号 -
我正在寻找与 autocad ... 或 solidworks 类似的体验 基本上是内容大小(保持宽高比)Xsize * Ysize 并放大特定区域 并且我已经将 ruby/rails 作为我选择
在bootstrap的重置部分有一个 .clearfix { *zoom: 1; } 请问这里*zoom 和 zoom 有什么区别? 我很感激任何回答。 最佳答案 这是一个 css hack,这意味着
我在单独的子图中有 3 轴加速度计时间序列数据(t,x,y,z)的图,我想一起缩放。也就是说,当我在一个图上使用“缩放到矩形”工具时,当我释放鼠标时,所有 3 个图都会一起缩放。 以前,我只是使用不同
有没有一种简单的方法可以在页面刚加载时默认自动查看 Mapbox map 的所有标记...?这是我的 map :http://www.geometry.be/urbanmaestro/v7/非常感谢您
我已经使用 UIWebView 在 html 文件中设置了以下视口(viewport)标签。 现在,当用户选择时,我得到如图所示的效果。我想禁用此效果但仍然可以放大。 尝试将 UIWebView 的
我现在使用 Core-plot 进行 iPhone 图表开发。但它有一些我无法达到的要求。 我现在使用CorePlot 0.4,示例代码AAPLot来开发 请看下面的图片,然后你就会知道我的问题是什么
最新版本的 Google 地球附带了一项名为“缩放时自动倾斜”的功能。如果启用,Google Earth 会在您拉近表面时自动将相机倾斜到地平线。可以从 GUI 中禁用此功能(首选项 -> 导航选项卡
我找到了使用 rel="smallImage:image1.jpg" 等链接更改缩放图像的方法,但我是在运行时创建图像并将其添加到页面,所以页面首次加载时链接不会存在(这似乎需要存在)。当我在运行时生
我正在使用 ImageView 支持缩放。现在我正在扩展 ImageView 以便我可以在 canvas 上绘图。目前我有 setImageResource 设置一个 drawable 和在 onDr
在缩放行为上手动设置比例后,如何触发缩放事件? var zoom = d3.behavior.zoom() .scaleExtent([0.5, 4]) .on('zoom', onz
我有这个简单的测试代码: ul{ float:left; margin:0; list-style:none; paddi
我正在尝试实现一个具有以下外观的移动网站: 一个固定的标题 可滚动、可缩放的内容 首次加载页面时内容缩小 我一直在试验 IScroll 4,结果似乎不错,但有一个问题我找不到解决办法。我页面的内容是用
嗨,我是 iOS 初学者,在我的项目中,我以编程方式添加了一个 Collection View ,并且已成功添加。 我的要求是,当我单击 UICollectionViewCell 时,它将像下面的第二
遵循此处的建议:How to disable double click zoom for d3.behavior.zoom? 我在页面加载时禁用了双击缩放行为: https://bl.ocks.org
当用户使用鼠标滚轮滚入和滚出时,您可以调整缩放速度吗? 我的理解是 zoom.on (https://github.com/mbostock/d3/wiki/Zoom-Behavior#wiki-on
关于 css 样式和在浏览器中放大和缩小,我遇到了既有趣又奇怪的问题。 我创建了一个 Material ui 卡片,点击它时背景颜色会随着动画而改变。 动画效果很好,但如果您放大或缩小页面,浏览器会在
我将 JQTouch 用于 iPhone 应用程序。 JQtouch 默认情况下禁用捏合和缩放页面的可能性。对于一页(包含大图像),我需要启用捏合和缩放功能。这很容易: var viewport =
我是一名优秀的程序员,十分优秀!