標籤:直接 div ima bottom invisible ext cti 實驗 app
在android布局中,使用include,將另一個xml檔案引入,可作為布局的一部分,但在使用include時,需注意以下問題:一、使用include引入如現有標題列布局block_header.xml,代碼如下: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/layout_header" android:layout_width="match_parent" android:layout_height="@dimen/title_bar_h" android:layout_alignParentTop="true" android:background="@color/app_main_color" android:paddingLeft="@dimen/bar_pd_left" android:paddingRight="@dimen/bar_pd_left" android:gravity="bottom" > <ImageButton android:id="@+id/btn_back" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/back" android:background="@drawable/grid_item_selector" android:layout_alignParentLeft="true" android:visibility="invisible" /> <TextView android:id="@+id/label_title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="@dimen/title_size" android:text="標題列" android:textColor="@color/white" android:layout_centerHorizontal="true" android:layout_alignBottom="@id/btn_back" android:paddingBottom="@dimen/bar_pd_bottom"/> <ImageButton android:id="@+id/btn_setting" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/setting" android:background="@drawable/grid_item_selector" android:layout_alignParentRight="true" android:visibility="invisible" /> </RelativeLayout>現在要在activity_main.xml中引入標題列的布局,代碼如下: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > <include android:id="@+id/bolck_titlebar" layout="@layout/block_header" /> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" android:layout_below="@id/bolck_titlebar" /> </RelativeLayout>二、在載入了activity_main.xml的Activity.class中,對block_header.xml的控制項的操作【普通控制項的使用】對控制項的操作和直接在activity_main中布局的控制項的操作一致,如設定標題列的標題文字如下:TextView tvTitle = (TextView) findViewById(R.id.label_title);tvTitle.setText(“title”);【最外層的layout的使用】但要注意的是,如果要對block_header.xml中最外層的布局layout_header進行操作,採用RelativeLayout layoutHeader = (RelativeLayout) findViewById(R.id.layout_header);獲得,獲得到的對象為null,這是由於我們為include部分設定了id屬性。如果我們沒有設定id屬性時,同樣能夠按照以上方式對其進行操作,如我們要設定背景色(沒有對include設定id的做法):RelativeLayout layoutHeader = (RelativeLayout) findViewById(R.id.layout_header);layoutHeader.setBackgroundColor(Color.BLUE);如果我們設定了id屬性,一些網頁介紹通過如下方式獲得並對其操作(錯誤做法):View layout = getLayoutInflater().inflate(R.layout.block_header, null); RelativeLayout layoutHeader= (RelativeLayout)layout.findViewById(R.id.layout_header); layoutHeader.setBackgroundColor(Color.BLUE);但通過實驗,並不能達到我們想要的效果,雖然設定了背景色,但是在activity_main.xml中表現出來的還是沒有設定之前的樣子,不難解釋,我們通過這種方式獲得的對象只是block_header.xml中的layout,並不是我們include進activity_main.xml中的layout,當我們在activity_main.xml設定了include的id,block_header.xml的最外層布局已被映射到include上,所以只需對include的視圖進行操作,就相當於對block_header.xml最外層的布局進行操作具體如下(對include設定了id的做法):View layoutHeader = findViewById(R.id.bolck_titlebar);layoutHeader.setBackgroundColor(Color.BLUE);所以在對被include的布局的最外層布局進行操作時,需要特別注意,如方法不正確,可能會出現報null 指標錯誤或者設定無效等問題。
android布局中使用include及需注意點