1

私は「天気予報」というプロジェクトに取り組んでおり、この静的 URLから情報が提供されます。都市のリストとその条件を取得する必要があります。たとえば、Tokyo と入力すると、次のように表示されます。

Tokyo, Japan#14#Cloudy ##

ArrayList都市のリストを使用して も作成しました。レイアウトxmlファイルを作成しました。

出力形式はプレーン テキストです。

  • 各出力行は改行文字で終了します(\n)
  • フローは常に 2 つの記号を含む行で終了します(##)

エラーが発生します:

Invalid layout of java.lang.String at value

A fatal error has been detected by the Java Runtime Environment:

Internal Error (javaClasses.cpp:129), pid=6464, tid=7052
fatal error: Invalid layout of preloaded class

これは私のコードです:

import android.app.Activity;
import android.os.Bundle;

public class Meteo extends Activity{

        @Override
    protected void onCreate(Bundle savedInstanceState) { {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.meteo);

        String url = `http://myexample.info/?cities`;
        // Weather information
        String weather = "Tokyo, Japan#14#Cloudy ##";
        // Get the city name
        String city = url.substring(url.indexOf("?") + 1).trim();
        System.out.println(city);
        // Check the weather of the city: 14#Cloudy
        // Remove city name
        // Remove last #
        if (weather.toLowerCase().contains(city.toLowerCase())) {
            // Get condition: 
            String condition = weather.substring(weather.indexOf("#") + 1,
                    weather.length() - 2);
            System.out.println(condition);
            // Split with # sign and you have a list of conditions
            String[] information = condition.split("#");
            for (int i = 0; i < information.length; i++) {
                System.out.println(information[i]);
            }
        }

            @Override

            protected void onPause() {
                // TODO Auto-generated method stub
                super.onPause();
            }

無効なレイアウト エラーを解決するにはどうすればよいですか?

4

1 に答える 1

1

文字列を変更 " `url =http://myexample.info/?cities `

文字列 url = "http://myexample.info/?cities";

「url」の前の ` は文字列を台無しにしており、http: の後のすべてをコメントにします。 //.

于 2012-12-07T11:21:15.107 に答える