some_activity.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
// some views
<include layout="@layout/view_part"/>
// probably more views
</LinearLayout>
view_part.xml:
<merge xmlns:android="http://schemas.android.com/apk/res/android">
// the views to be merged
</merge>
2
public void saveFormality() {
try {
ContentValues values = new ContentValues();
values.put(Data.DATA1, this.getFormality() ? "1" : "0");
int mod = ctx.getContentResolver().update(
Data.CONTENT_URI,
values,
Data.CONTACT_ID + "=" + this.getId() + " AND "
+ Data.MIMETYPE + "= '"
+ clsContacts.FORMALITY_MIMETYPE + "'", null);
if (mod == 0) {
values.put(Data.CONTACT_ID, this.getId());
values.put(Data.MIMETYPE, clsContacts.FORMALITY_MIMETYPE);
ctx.getContentResolver().insert(Data.CONTENT_URI, values);
}
} catch (Exception e) {
Log.v(TAG(), "saveFormality failed");
}
}
分享到:
相关推荐
例如,假设我们有一个通用的头部布局(header.xml)和一个主页面布局(main.xml),在main.xml中我们可以这样使用`<include>`标签: ```xml <LinearLayout xmlns:android=...
`<include />`标签是一个非常实用的功能,它允许我们将一个XML布局文件嵌入到另一个布局文件中,实现代码的复用和模块化。这个Demo将详细解释如何使用`<include />`标签以及其背后的原理。 ### 1. `<include />`...
当我们在一个布局中使用`<include>`时,被包含的布局会成为一个独立的视图层级,这可能会导致不必要的嵌套,增加渲染成本。`<merge>`作为根节点时,它可以消除这种额外的层级,使得被包含的布局直接与父布局进行合并...
在Android开发中,`<include>`标签是一种布局重用机制,它允许开发者将一个布局文件嵌入到另一个布局文件中,极大地提高了代码的可维护性和复用性。本篇文章将详细探讨`<include>`标签的使用方法、应用场景以及注意...
- 为了避免混淆,避免在同一个布局文件中同时使用merge和常规布局(如LinearLayout、RelativeLayout等)。 通过合理利用merge标签,开发者可以有效地减少视图层级,提高UI性能,提供更流畅的用户体验。在实际开发中...
<br><br><br><br><br><br><br>二、使用DLL中导出类的方法:<br><br><br>#include "WordOperate.h"<br>#pragma comment(lib, "wordDll.lib")<br><br>在类中定义成员: <br>CWordOperate wordFile;<br><br><br>使用...
例如,如果你的应用中有多处地方需要用到一个复杂的按钮或某个特定的视图组合,你可以将它们封装到一个单独的XML布局文件中,然后在需要的地方使用`<include>`来引入。这样可以显著减少代码量,同时便于后期修改和...
regardless of bus type<br> Fits on a diskette for easy transportability and quick downloads<br> Drag and drop captured data to other products in html format<br> Save captured data to a text ...
为了最大化利用这两个标签的优点,通常会在一个`merge`布局中包含多个`include`标签,这样既可以重用代码,又能减少视图层级。例如: ```xml <!-- parent_layout.xml --> <LinearLayout android:orientation=...
在同一个数据库中创建多个表的缺陷<br>7.5. 优化MySQL服务器<br>7.5.1. 系统因素和启动参数的调节<br>7.5.2. 调节服务器参数<br>7.5.3. 控制查询优化器的性能<br>7.5.4. 编译和链接怎样影响MySQL的速度<br>7.5.5. ...
1,01.zip<br>Class for displaying system error messages<br>显示系统错误信息的一个类(5KB)<END><br>2,02.zip<br>Simple Thread Class<br>一个简单的线程类(13KB)<END><br>3,03.zip<br>Single Instance Program ...
当我们需要在多个布局中复用一部分视图时,可以使用`<include>`标签来引用一个包含`merge`的布局文件。这样,被引用的视图会直接插入到`include`的位置,而不是创建一个新的层级。 ```xml <!-- reusable_layout....
使用`merge`时,需要注意在XML布局文件的根元素使用`<merge>`代替`<LinearLayout>`、`<RelativeLayout>`等常见的布局容器,并且该`merge`标签通常配合`<include>`一起使用。 接下来,我们来看`include`标签。`...
winhole.zip<br>This example demonstrates how to put a hole in the center of a form.<END><br>15 , tileform.zip<br>This will tile a picture on the background of your form.<END><br>16 , radiomnu.zip<br>...
Credits<br> About the Author<br> Contributors<br> Acknowledgments<br> Preface<br> Why BSD Hacks?<br> How to Use this Book<br> How This Book Is Organized<br> Conventions Used in This Book<br> Using ...
not really encryption<END><br>21 , imagebutton2.zip<br>Round and freaky shape command buttons, updated from before- really an image control.<END><END><br>22 , talkeyboard.zip<br>Talking keyboard for ...
`<include>`是Android SDK中的一个视图容器,它允许你在一个布局文件中插入另一个布局文件的内容。通过这种方式,你可以创建一组通用的UI组件,然后在多个地方重复使用它们。 ### 2. 使用方式 在XML布局文件中,`...
1. **创建项目**:在本地创建一个新的项目或使用已有的JAR包作为基础。 2. **修改POM文件**:编辑项目的`pom.xml`文件,添加必要的插件配置: - **Maven部署插件**:配置部署的目标仓库URL等信息。 ```xml <build...
例如,`merge`不能直接包含在`<ScrollView>`或`<HorizontalScrollView>`中,因为它们不支持直接的子视图,而需要一个容器(如`LinearLayout`或`RelativeLayout`)。 通过理解和合理使用`include`和`merge`,开发者...
<br><br>ex1: convert 16k 16bit pcm file to 8k 、8 bit ulaw file<br><br> sox -t raw -r 16000 -2 -s -c 1 src.pcm -t raw -U -r 8000 dest.ulaw<br><br>ex2: merge files<br><br> sox -t raw -s -2 -c 1 -r 8000...