これらは私のコードです。これらのコードを 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")」という行にブレークポイントを設定しましたが、ここまでアプリケーションを実行すると応答がありません。死んだようです。
誰でも私を助けることができますか?よろしくお願いします。