这些是我的代码,我在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“)”行设置断点,当应用程序运行到这里时,没有响应。它看起来像死了。
谁能帮帮我? 谢谢你提前。答案 0 :(得分: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);
答案 1 :(得分:0)
前往DEBUGGER尝试进一步查明正在发生的事情。
或使用:
Log.e("Log Title","message");