- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
发生了什么:
imgGodInfoId
AdptAtomicGodGallery.java
public class AdptAtomicGodGallery extends PagerAdapter {
// Declare Variables
Context context;
Integer[] godImages;
LayoutInflater inflater;
String godName;
public AdptAtomicGodGallery(Context context, Integer[] _godImages, String _godName) {
this.context = context;
this.godImages = _godImages;
this.godName=_godName;
}
@Override
public int getCount() {
return godImages.length;
}
@Override
public boolean isViewFromObject(View view, Object object) {
return view == ((LinearLayout) object);
}
@Override
public Object instantiateItem(ViewGroup container, int position) {
// Declare Variables
ImageView imgGodId;
final ImageView imgGodInfoId;
final RelativeLayout root;
TextView txtShortDescription;
inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View itemView = inflater.inflate(R.layout.adpt_atomic_god_gallery, container,false);
// Locate the ImageView in viewpager_item.xml
imgGodId = (ImageView) itemView.findViewById(R.id.imgGodId);
imgGodInfoId = (ImageView) itemView.findViewById(R.id.imgGodInfoId);
root= (RelativeLayout) itemView.findViewById(R.id.root);
txtShortDescription= (TextView) itemView.findViewById(R.id.txtShortDescription);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 4;
Bitmap preview_bitmap = BitmapFactory.decodeResource(context.getResources(),godImages[position], options);
Drawable drawable = new BitmapDrawable(context.getResources(),preview_bitmap);
root.setBackgroundDrawable(drawable);
root.setTag(godImages[position]);
imgGodInfoId.setTag(godName);
if(godName.equalsIgnoreCase(Constants.GOD_ONE)){
txtShortDescription.setText(Constants.GOD_ONE_DESCRIPTION_SHORT_DESC);
}else if(godName.equalsIgnoreCase(Constants.GOD_TWO)){
txtShortDescription.setText(Constants.GOD_TWO_DESCRIPTION_SHORT_DESC);
}else if(godName.equalsIgnoreCase(Constants.GOD_THREE)){
txtShortDescription.setText(Constants.GOD_THREE_DESCRIPTION_SHORT_DESC);
}else if(godName.equalsIgnoreCase(Constants.GOD_FOUR)){
txtShortDescription.setText(Constants.GOD_FOUR_DESCRIPTION_SHORT_DESC);
}else if(godName.equalsIgnoreCase(Constants.GOD_FIVE)){
txtShortDescription.setText(Constants.GOD_FIVE_DESCRIPTION_SHORT_DESC);
}else if(godName.equalsIgnoreCase(Constants.GOD_SIX)){
txtShortDescription.setText(Constants.GOD_SIX_DESCRIPTION_SHORT_DESC);
}else if(godName.equalsIgnoreCase(Constants.GOD_SEVEN)){
txtShortDescription.setText(Constants.GOD_SEVEN_DESCRIPTION_SHORT_DESC);
}else if(godName.equalsIgnoreCase(Constants.GOD_EIGHT)){
txtShortDescription.setText(Constants.GOD_EIGHT_DESCRIPTION_SHORT_DESC);
}else if(godName.equalsIgnoreCase(Constants.GOD_NINE)){
txtShortDescription.setText(Constants.GOD_NINE_DESCRIPTION_SHORT_DESC);
}else if(godName.equalsIgnoreCase(Constants.GOD_TEN)){
txtShortDescription.setText(Constants.GOD_TEN_DESCRIPTION_SHORT_DESC);
}
imgGodInfoId.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
/* BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 4;
Bitmap preview_bitmap = BitmapFactory.decodeResource(context.getResources(),(Integer) root.getTag(), options);
*/
Toast.makeText(context, "clicked", Toast.LENGTH_SHORT).show();
/*Intent intent=new Intent(context,ActAtomicGodDetailDesc.class);
intent.putExtra("GOD_NAME", imgGodInfoId.getTag().toString());
intent.putExtra("GOD_IMAGE",(Integer) root.getTag());
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);*/
}
});
// Add viewpager_item.xml to ViewPager
((ViewPager) container).addView(itemView);
return itemView;
}
@Override
public void destroyItem(ViewGroup container, int position, Object object) {
// Remove viewpager_item.xml from ViewPager
((ViewPager) container).removeView((LinearLayout) object);
}
}
寻呼机适配器的 Xml
<RelativeLayout
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:orientation="vertical" >
<ImageView
android:id="@+id/imgGodInfoId"
android:layout_width="75dp"
android:layout_height="75dp"
android:clickable="true"
android:padding="5dp"
android:scaleType="fitXY"
android:src="@drawable/img_info_black" />
<LinearLayout
android:id="@+id/selShortDescContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:background="@drawable/sel_selectyourgod"
android:gravity="center" >
<TextView
android:id="@+id/txtShortDescription"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:text="@string/swipe_notification"
android:textColor="#FFFFFF"
android:textSize="12sp"
android:textStyle="bold"
android:color="#55000000" />
</LinearLayout>
<LinearLayout
android:id="@+id/selFavGodsContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/selShortDescContainer"
android:layout_alignParentLeft="true"
android:layout_marginBottom="141dp"
android:background="@drawable/sel_selectyourgod"
android:gravity="center" >
<TextView
android:id="@+id/txtNotification"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:text="@string/swipe_notification"
android:textColor="#FFFFFF"
android:textSize="12sp"
android:textStyle="bold"
android:color="#55000000" />
</LinearLayout>
</RelativeLayout>
最佳答案
我已经能够这样做:重写 onViewCreated()
Fragment
的方法由您持有ViewPager
作为:
@Override
public void onViewCreated(View view, Bundle savedInstanceState){
view.setOnClickListener(new OnClickListener(){
public void onClick(View v){
/* Do as you please here. */
}
});
}
试试这个。这应该有效。
编辑:
如果您使用 ViewPager
,此方法将起作用。和 PagerAdapter
与 Fragment
s,并覆盖 onViewCreated()
Fragment
的方法
关于android - 如何检测在 ViewPager 的 PagerAdapter (android) 中点击 ImageView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28645740/
menu Home Events Technical Schedule
我试图阻止触发默认 anchor 链接和 onclick 事件。 这是 HTML 代码: Google 我正在尝试使用以下 jQuery 代码阻止任何重定向的发生: $("#mylink").cli
我想在单击父 div 上的任意位置时切换我的 div,除非单击 anchor 元素。因此,例如,如果我单击示例中的第一个文本,我希望它切换,但在我的示例中的第二个文本上,我不希望它切换。 JSFidd
我在通过 jQuery 伪造 anchor 点击时遇到问题:为什么我的thickbox在我第一次点击输入按钮时出现,但第二次或第三次却没有出现? 这是我的代码: Link 当我直接点击链接时,它总是
我已经从 Mootools 切换到 jQuery,因为我认为它有更好的支持。我有这样的 HTML: Opcje Opcje Opcje Opcje Opcje Opcje Opcje JS
我是一名优秀的程序员,十分优秀!