为什么我总是(FrameLayout)findViewById总是返回null? 该文件存在。 使用Google地图。 我阅读了相关主题。 供电: 项目的清洁。 删除文件夹gen。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.travel_map_activity);
mapView = (MapView) findViewById(R.id.travelMapView);
FrameLayout mainLayout = (FrameLayout) findViewById(R.id.mapFrame);//null
}
有什么问题?
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapFrame"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/tvTop"
android:layout_width="fill_parent"
android:layout_height="20dip"
android:background="#FFFFFF"
android:gravity="top|center_horizontal"
android:text="FLOATING VIEW - TOP"
android:textColor="#000000"
android:textStyle="bold" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/lvMain"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout></FrameLayout>
travel_map_activity.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" >
<com.google.android.maps.MapView
android:id="@+id/travelMapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="key" />
</LinearLayout>
感谢
答案 0 :(得分:0)
您找到的这两个观点(travelMapView
和mapFrame
)是否位于相同的布局travel_map_activity
中。因为您提供的布局根本没有travelMapView
,但您没有NullPointerException
。
编辑:正如您现在所示,mapFrame
不在同一视图中,因此无法实现...
嗯,有一个,但没有用,因为setContentView
一次只显示一个单个布局。无论如何,你可以仍然可以使用夸大的布局访问mapFrame
,而不会实际使用它(这是因为它完全没用):
LayoutInflater inflater = (LayoutInflater) context.getSystemService( Context.LAYOUT_INFLATER_SERVICE );
View view = inflater.inflate( R.layout.your_other_layout_with_framelayout, null );
FrameLayout mainLayout = (FrameLayout) view.findViewById(R.id.mapFrame);
使用它可以让你从null中逃脱,但再次,如果它不在你当前的视图中,你就不可能使用那个FrameLayout。
答案 1 :(得分:0)
您正在从travel_map_activity.xml
扩充布局,其中只包含一个ID:R.id.travelMapView
。您无法从其他布局中选择项目(有一些小例外,更像是滥用系统)。
您需要将内容视图设置为包含R.id.mapFrame
的任何布局,或者您需要找到另一种传递该数据的方法(可能使用Bundle
打包的Intent
1}}例如.putExtra()
和.getIntExtra()
; other questions和blogs涵盖此类内容。)