【Android-布局复用】 多个界面复用一个布局文件(二)

多个界面复用一个布局界面 ,如何找到复用布局文件中的控件的id?

 

举个栗子:

1.  layout_common.xml  

复用的布局文件,如何找到button 的id?

<?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="wrap_content"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/common_button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="按钮1" />

</LinearLayout>

2.layout_main.xml

关键是给include的布局添加一个id

<?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" >

    <!-- 在布局文件中引用复用的布局文件 -->

    <include
        android:id="@+id/common_layout"
        layout="@layout/layout_common" />

</LinearLayout>
 

3.MainActivity.java

然后就可以通过以下代码找到 复用布局文件控件的id了。

View view=findViewById(R.id.common_layout);
Button button=view.findViewById(R.id.common_button1);

 

posted @ 2017-09-15 17:28  发明创造小能手  阅读(1673)  评论(0编辑  收藏  举报
levels of contents