图像显示需要两个陈词滥调而不是一个

时间:2015-12-24 13:22:04

标签: image android-intent display

我为打开图片而创建的一段代码要求我在单词上单击两次以打开图像。我不明白为什么它只对一次点击做出回应。

这里的布局是TextView

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:text="The New Yorker"
    android:id="@+id/the_new_yorker"
    android:textStyle="italic"
    android:textColor="@color/blue"
    android:onClick="new_yorker_cartoon"/>

这里是java文件中的相应函数

public void new_yorker_cartoon(View view) {
    final TextView TextGenerique = (TextView) findViewById(R.id.the_new_yorker);
    View.OnClickListener monEcouteur = new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            String imageUrl = "http://www.lapasserelle.com/english/l09/imgs/new_yorker.gif";
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setDataAndType(Uri.parse(imageUrl), "image/gif");
            startActivity(intent);
            }
        };
    TextGenerique.setOnClickListener(monEcouteur);
}

我不明白为什么我需要点击两次“纽约客”字样才能在手机上显示图像new_yorker.gif。

1 个答案:

答案 0 :(得分:0)

可能是第一次点击是激活屏幕,第二次是获得响应。