0

これらは私のコードです。これらのコードを AsyncTask onPostExcute 関数で実行します。

    LayoutInflater inflater =LayoutInflater.from( this.context );
    LinearLayout layout = ( LinearLayout) inflater.inflate(R.layout.custom_info_window, null, false);
    layout.addView(layout);
    View view = (View) layout;

     ((ImageView) view.findViewById(R.id.badge)).setImageResource(badge);
    String title = marker.getTitle();
    TextView titleUi = ((TextView) view.findViewById(R.id.title));
    titleUi.setText(title);  

アプリケーションがここまで実行されると、エラーも応答もありません

ここにcustom_info_window.xmlという名前の私のxmlファイルがあります

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<ImageView
    android:id="@+id/badge"
    android:contentDescription="@string/info_window"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="5dp"
    android:adjustViewBounds="true" >
</ImageView>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:ellipsize="end"
        android:singleLine="true"
        android:textColor="#ff000000"
        android:textSize="14sp"
        android:textStyle="bold" />
    <TextView
        android:id="@+id/snippet"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:singleLine="true"
        android:textColor="#ff7f7f7f"
        android:textSize="14sp" />
</LinearLayout>

AsyncTask が実行された後、このビューを Mainactivity の子ビューとして表示しようとしましたが、うまくいきませんでした。エラーや警告はありません。「titleUi.setText("1312")」という行にブレークポイントを設定しましたが、ここまでアプリケーションを実行すると応答がありません。死んだようです。

誰でも私を助けることができますか?よろしくお願いします。

4

2 に答える 2

1

AsyncTask コード全体をここに投稿してみてください。コードの以下の部分に問題があると思います。

LayoutInflater inflater =LayoutInflater.from( this.context );
LinearLayout layout = ( LinearLayout) inflater.inflate(R.layout.custom_info_window, null, false);
layout.addView(layout);
View view = (View) layout;

代わりにこれを試してください。

LayoutInflater inflater = (LayoutInflater) context.getSystemService(LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.custom_info_window, null);
    ((ImageView) view.findViewById(R.id.badge)).setImageResource(badge);
    String title = marker.getTitle();
    TextView titleUi = ((TextView) view.findViewById(R.id.title));
    titleUi.setText(title);  
于 2013-08-25T13:06:03.233 に答える
0

DEBUGGER に移動して、何が起こっているのかをさらに特定してみてください。

または使用:

Log.e("Log Title","message");
于 2013-08-25T13:02:48.453 に答える