上文中,main.xml是我直接提出来的,并没有说明是怎么找到它的,现在说明发现它的理由:
一般我们分析界面布局会用到hierarchyviewer这个工具,从工具中,我们对应到视图,最主要的视图id我们找到了"gl_root_view",这一点在上一节中有说明。在Source insight中搜索这个id,我们找到了layout/Gl_root_group.xml:
<merge xmlns:android="http://schemas.android.com/apk/res/android"> <com.android.gallery3d.ui.GLRootView android:id="@+id/gl_root_view" android:layout_width="match_parent" android:layout_height="match_parent"/> <View android:id="@+id/gl_root_cover" android:layout_width="match_parent" android:layout_height="match_parent"
...
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gallery_root" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <include layout="@layout/gl_root_group"/> <FrameLayout android:id="@+id/header" android:visibility="gone" android:layout_alignParentTop="true" android:layout_width="match_parent" android:layout_height="wrap_content"/> <FrameLayout android:id="@+id/footer" android:visibility="gone" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_width="match_parent" android:layout_height="wrap_content"/> </RelativeLayout>
我们先抛开GLRootView.java这个视图,先从activity入手分析一下Gallery.java这个类