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

转到调试器以尝试进一步查明正在发生的事情。

或使用:

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