亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android include使用

發布時間:2020-07-24 08:24:18 來源:網絡 閱讀:737 作者:whatever957 欄目:移動開發


安卓中,布局include主要是重用布局作用,當一個界面配置較多情況下,采用include可以大大增強  其可讀性。


eg:主布局include一個layout01布局,layout01布局中include一個layout02布局。

//layout01.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" >

    <Button
        android:id="@+id/btnLayout01"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="This btn lies on layout01" />

    <include layout="@layout/layout02" />

</LinearLayout>

//layout02.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" >

    <Button
        android:id="@+id/btnLayout02"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="This btn lies on layout02" />


</LinearLayout>

//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="${relativePackage}.${activityClass}" >
    <TextView
        android:id="@+id/tvShow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This txextview lies on main layout" />
    <include
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/tvShow"
        layout="@layout/layout01" />
</RelativeLayout>

//MainActivity.java

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		Button btnLayout01 = (Button)findViewById(R.id.btnLayout01);
		Button btnLayout02 = (Button)findViewById(R.id.btnLayout02);

		btnLayout01.setOnClickListener(new View.OnClickListener() {
			@Override
			public void onClick(View v) {
				Log.d("layout01","btn01 click");
			}
		});
		btnLayout02.setOnClickListener(new View.OnClickListener() {
			@Override
			public void onClick(View v) {
				Log.d("layout02","btn02 click");
			}
		});
	}
}

注:采用include方法,可直接認為包含(內嵌)的界面就是直接寫在當前布局文件中的。所以,對于包含(include)進來的界面中的控件,可直接用findViewById()方法找到當中的子控件。


from:http://blog.csdn.net/xyz_lmn/article/details/14524567

 1)<include />標簽可以使用單獨的layout屬性,這個也是必須使用的。

 2)可以使用其他屬性。<include />標簽若指定了ID屬性,而你的layout也定義了ID,則你的layoutID會被覆蓋,解決方案。

 3)在include標簽中所有的android:layout_*都是有效的,前提是必須要寫layout_widthlayout_height兩個屬性

 4)布局中可以包含兩個相同的include標簽,引用時可以使用如下方法解決(參考):


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广宁县| 繁昌县| 盈江县| 东阿县| 汉川市| 海伦市| 文昌市| 绥芬河市| 岢岚县| 金沙县| 张家界市| 手游| 连江县| 揭阳市| 左云县| 尉氏县| 喜德县| 读书| 铁力市| 集安市| 大庆市| 苏尼特左旗| 纳雍县| 织金县| 固始县| 巩义市| 桓台县| 苏尼特右旗| 洛阳市| 河曲县| 贡嘎县| 桐柏县| 额尔古纳市| 伊金霍洛旗| 宣化县| 沙湾县| 开封市| 台北市| 安图县| 集安市| 海南省|