2

私はAndroidプログラミングが初めてで、ユーザーがボタンを押したときに外部Javaメソッドによって返された特定の文字列を画面に表示しようとしています。

これが私たちのボタンです:

        <ImageView android:id="@+id/imageView1"
    android:layout_width="300px"
    android:layout_height="400px"
    android:layout_marginTop="743px"
    android:layout_marginLeft="420px"
    android:contentDescription="This is the random facts"
    android:onClick="randomFactClicked"
    android:src="@drawable/wino_guy"/>

これはメソッド randomFactClicked です

    public String randomFactClicked(View view) {
    String message = randomFactGenerator();
    return message;
}

これが randomFactGenerator メソッドです。これは基本的に 18 個の文字列のうちの 1 つを返します。これは、ユーザーがボタンをクリックしたときにアプリケーションに表示したい文字列です。

    public static String randomFactGenerator()  {

        Random generator = new Random();

        //Generate a random int between 0 and 18
        int rand = generator.nextInt(17);
        String fact = new String("");
        switch (rand) {

        case 0: fact =  "In the early part of the twentieth century, the  drys  or the prohibitionists protested to eliminate the word wine from the college and school texts, including Roman and Greek literature. They also attempted to prove that praises of wine mentioned in Biblical Old Testament are no more than un-fermented grape juice and expressed their views to eliminate medicinal wines from the United States Pharmacopoeia.";
                        break;

        case 1: fact = "Women who drink two glasses of wine a day are more active in bed. In simple words, they enjoy sex better as compared to women who do not drink wine.";
                        break;

        case 2: fact = "The flavour of young wine is known as aroma while a mature wine's flavor is like a bouquet.";
                        break;

        case 3: fact = "A person who constantly talks about wine that she/he will open but never does, is popularly known as a cork-tease.";
                        break;

        case 4: fact = "In ancient Greece, a person hosting the party would drink the wine first just to make sure it was healthy to drink and not poisoned. It was here that the popular phrase drinking to one's health arose. It was in ancient Rome that Toasting started when the Romans continue to follow the Greek tradition. However, they were the people to drop a toasted bread in their wine glasses to moderate excessive acidity and undesirable tastes.";
                        break;

        case 5: fact = "Except for the Book of Jonah, rest of the entire Biblical Old Testament talks about the wine.";
                        break;

        case 6: fact = "You will be astonished to know that early Roman women were not allowed to drink wine. If their husbands found about their wine drinking, they had the liberty to kill them. In 194 B.C.,a divorce also happened due the same reason.";
                        break;

        case 7: fact = "Since wine tasting is all about wine smelling, women of reproductive ages are better wine testers because they have better smell sense than men.";
                        break;

        case 8: fact = "Speyer, a town in Germany is popular as the place where the oldest wine bottle was discovered in A.D. 325, inside one of the two Roman sarcophaguses. The bottle can be seen at the Germany s Historisches Museum der Pfalz .";
                        break;

        case 9: fact = "Highest wine consumption was recorded in the cities of California, Florida and New York of United States of America. France, Italy and Spain are three largest wine producers in the world followed by California.";
                        break;

        case 10: fact = "In their endeavour to dissipate the aroma of wine, wine testers twirl their wine glasses, often filling them up to only one third, in order to avoid splitting of wine during a twirl.";
                        break;

        case 11: fact = "Drinking wine regularly helps you stay fit and healthy. It has also been found that drinking wine reduces the risk of gum diseases, Alzheimer s disease, stroke and heart diseases. So, the next time you drink wine, remember it s health benefits as well.";
                        break;

        case 12: fact = "Make sure you never store wine in the kitchen because it is warm, and thus not an ideal place to store it. Moreover, refrigerators are also not the right place to store wines because even at the warm settings, they are very cold.";
                        break;

        case 13: fact = "While tasting wine, leave the wine in your mouth for a second or two. Then, you can either spit it out in a spittoon or swallow it. A high quality wine not only tastes good but also has a long after-taste. On the other hand, a low quality wine would have a short after-taste.";
                        break;

        case 14: fact = "Ripe and rich dark shades of wine such as the most golden whites, deepest & blackest reds are produced at places that have warmer climate, whereas less lush and lighter shades of wine like white wines are produced at cooler climates. Not many people know that with time white wine becomes golden and brown yellow while red wines lose their colour and turns into a brick red colour.";
                        break;

        case 15: fact = "The European Union has decided that any sparkling wine produced outside France cannot be labelled as champagne";
                        break;

        case 16: fact = "Wine when combined with food offers a third flavour or  synergy . This makes your dining experience, a memorable one. When you plan lighter foods in meal, make sure you have light wines to serve and when you prepare heavy and rich food items, opt for heavier wines. In addition, always remember that serving sweet wine with desserts, white wine with fish and red wine with red meat, compliments your meal.";
                        break;

        case 17: fact = "Women who drink excessive wine are at an increased risk of suffering from side effects of wine because the lining of the stomach needed to metabolise alcohol is less in them as compared to men.";
                        break;
        }

    return fact;
}

Java ファイルから XML に再度アクセスするにはどうすればよいでしょうか。メッセージはありますが、XML によって処理されるため、何らかの理由で表示できません。

事前に助けてくれてありがとう!

4

2 に答える 2