0

textviewに数値を表示させようとしていますが、表示されません。

私のアクティビティコード:

package com.example.gotteron;

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

public class Classement extends Activity{

    TextView textview;
    public void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        setContentView(R.layout.classement);
        GetCode getCode = new GetCode();
        textview = (TextView)findViewById(R.id.textView1);
        try {
            textview.setText(getCode.test());
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }
}

////////////////////////////////////////////////// ////////////////////////////////////////////////// ////////////////////////////////////////////////// ///////////////

HTMlを取得するためのクラス:

//Package
package com.example.gotteron;

//Import
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;

public class GetCode{

    public String test() throws Exception{

        //Recupérer le code HTML de la page
        URL oracle = new URL("http://www.nationalleague.ch/NL/fr/");
        URLConnection yc = oracle.openConnection();
        BufferedReader in = new BufferedReader(new InputStreamReader(
                yc.getInputStream()));
        String inputLine;
        String s1 = "";
        while ((inputLine = in.readLine()) != null)
            s1 = s1 + inputLine;
        in.close();

        int Berne = s1.indexOf(">SC Bern</td>");
        String s3 = String.valueOf(Berne); 
        return s3;
    }
}

////////////////////////////////////////////////// ////////////////////////////////////////////////// ////////////////////////////////////////////////// ///////////////

XMLファイル

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/background">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/firstPosition" />

</LinearLayout>

////////////////////////////////////////////////// ////////////////////////////////////////////////// ////////////////////////////////////////////////// ///////////////

マニフェスト

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.gotteron"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.gotteron.Principal"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="Classement" android:label="@string/app_name"></activity>
        <activity android:name="Calendrier" android:label="@string/app_name"></activity>
        <activity android:name="Live" android:label="@string/app_name"></activity>
    </application>
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>

////////////////////////////////////////////////// ////////////////////////////////////////////////// ////////////////////////////////////////////////// ///////////////

編集:

コードをありがとうございますが、まだ問題があります。アプリケーションを実行すると、textviewにデフォルトのメッセージが表示されます。この間、logcatは多くのメッセージを表示します:http://pastebin.com/244grjYt そして 最後にアプリがクラッシュします

4

3 に答える 3

1

uiスレッドでネットワーク接続(HTTP接続)を確立することはできません。呼び出しをgetCode.test()別のスレッドに移動するか、より適切にAsyncTask..に移動してみてください。

于 2013-01-15T07:43:41.107 に答える
1

基本的に、これは他の答えについてです。あなたは答えとして何もチェックしていないので、多分これは助けになるでしょう。

public class MyClass extends Activity {
    TextView textview;
    public void onCreate(Bundle bundle) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.classement);
        textview = (TextView)findViewById(R.id.textview);
        new NetworkOperation().execute();
    }

    private class NetworkOperation extends AsyncTask<Void, Void, String> {
        protected String doInBackground(Void... params) {
            try {
                URL oracle = new URL("http://www.nationalleague.ch/NL/fr/");
                URLConnection yc = oracle.openConnection();
                BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream()));
                String inputLine;
                String s1 = "";
                while ((inputLine = in.readLine()) != null)
                    s1 = s1 + inputLine;
                in.close();
                int Berne = s1.indexOf(">SC Bern</td>");
                String s3 = String.valueOf(Berne); 
                return s3;
            }
            catch (IOException e) {
                e.printStackTrace();
            }
            return null;
        }      

        protected void onPostExecute(String result) {
            textview.setText(result);
        }
    }
}
于 2013-01-15T08:24:27.100 に答える
0

NetworkOnMainThreadUIスレッドでネットワーク関連のコードを記述しているときに、APIレベル11以降で実行されているエミュレーターで非常に一般的な例外に直面しています。コードをに変更してdoInBackground()実行AsyncTaskします。

あなたの場合、test()で例外をスローしているので、例外は例外によってキャッチされるため、アプリはクラッシュしません。

サンプルコード:

class FetchResultTask extends AsyncTask<Void,Void,String>
{
protected String doInBackground()
{
  //your network related code.
}
protected void onPostExecute(String result)
{
  super.onPostExecute(result);
   //set the result to TextView here.
}
}
于 2013-01-15T07:46:29.737 に答える