0

画像を開くために作成したコードでは、単語を2 回クリックして画像を開く必要があります。ワンクリックで反応しない理由がわかりません。

ここのレイアウトでは 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 を表示するために New Yorker という単語を 2 回クリックする必要がある理由です。

4

1 に答える 1