Tag: xml

将xml导入到另一个xml中

我有很多控制重复在我的xml (例如一个Button )。 有没有可能在xml编写一次Button ,然后将其导入到我需要的所有布局中?

如何select具有特定属性的所有元素? 与TinyXPath

用于select具有属性A的所有元素的XPathexpression式是什么? const char* xpath = "//\*/\*[@A]"

在C#中,将string格式化为XML的最佳方法是什么?

我正在C#中创build一个轻量级编辑器,并希望知道将string转换为格式良好的XMLstring的最佳方法。 我希望在C#库中有一个公共方法,例如“public bool FormatAsXml(string text,out string formattedXmlText)”,但它不是那么容易,可以吗? 具体来说,“SomeMethod”必须是什么方法才能产生下面的输出? string unformattedXml; string formattedXml; unformattedXml = "<?xml version=\"1.0\"?><book><author>Lewis, CS</author><title>The Four Loves</title></book>" formattedXml = SomeMethod(unformattedXml); Console.WriteLine(formattedXml); 输出: <?xml version="1.0"?> <book id="123"> <author>Lewis, CS</author> <title>The Four Loves</title> </book>

向服务器发布UTF-8编码的数据会丢失某些字符

我正在从事包括服务器(JavaEE应用程序)和客户端(Android应用程序)通信的项目。 XML作为HTTP请求(名为“xml”)的POST参数之一发送。 我传递给服务器的其他POST参数也很less,但在下面的函数中,为了简单起见,我将它们移除了。 发生的问题是某些字母没有正确地传送到服务器 – 例如字符Ű (请注意,这不是德文,顺便说一下,它是正确传送的)。 代码发送如下: private String postSyncXML(String XML) { String url = "http://10.0.2.2:8080/DebugServlet/DebugServlet"; HttpClient httpclient = new DefaultHttpClient(); List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(); nameValuePairs.add(new BasicNameValuePair("xml",XML)); UrlEncodedFormEntity form; try { form = new UrlEncodedFormEntity(nameValuePairs); form.setContentEncoding(HTTP.UTF_8); HttpPost httppost = new HttpPost(url); httppost.setEntity(form); HttpResponse response = (HttpResponse) httpclient .execute(httppost); HttpEntity resEntity = response.getEntity(); String […]

是否有可能从底部填充ListView?

我有一个简单的应用程序,基本上由一行button和项目的ListView的select和操纵。 列表中可能只有一个项目或几个项目。 不过,我宁愿如果列表将从ListView的底部填充,因为大多数人拿着他们的手机的方式可以更容易地select更接近屏幕底部的项目。 这可能吗?

android包含标签 – 无效的布局引用

我有一个问题,包括通过包含在android layout xml文件中的标签不同的布局。 在指定布局引用(@layout / …)时,我得到了Eclipse ADT中的InflateException,并出现以下错误: InflateException:您必须指定一个有效的布局引用。 布局ID @ layout / func_edit_simple_calculator_toolbox无效。 引用应该是有效的,因为我从我的其他布局的列表中select它,并没有input它。我使用的Android SDK的V2.1 这些是布局文件 func_edit_simple_calculator_toolbox.xml <?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_width="wrap_content"> <TableRow android:id="@+id/TableRow01" android:layout_width="wrap_content"android:layout_height="wrap_content"> <Button android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="1"></Button> <Button android:id="@+id/Button02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="2"></Button> <Button android:id="@+id/Button03" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="3"></Button> <Button android:id="@+id/Button04" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="+"></Button> </TableRow> <TableRow android:id="@+id/TableRow02" android:layout_width="wrap_content" android:layout_height="wrap_content"> <Button android:id="@+id/Button05" android:layout_width="wrap_content" […]

Android视图剪辑

有没有什么办法可以在android(Honeycomb)中定义ViewGroup的剪辑区域? 例如,我有一个带有圆angular的图像背景的ListView。 当我滚动列表时,孩子们伸出背景的angular落 – 我更喜欢他们在圆angular内剪辑。 左图是目前正在做的,右图是我想要的。 我在看ClipDrawable,但似乎这只能用于进度条? 另外,我正在试图在一个小部件中做到这一点。 所以我不能使用自定义视图并重写onDraw掩码。 谢谢!

如何创buildHaar Cascade(xml)以使用OpenCV?

如果你熟悉OpenCV库,你知道什么是哈尔级联图像对象检测。 我的意思是像人脸或其他东西的图​​像对象检测。 我有haar cascade xml进行人脸检测,但是我不知道如何创build自己的。 我想创buildHaar Cascade xml来检测简单明亮的圆形光源(即从电视遥控器中闪烁的红外光)。 那么,如何创build使用OpenCV的Haar Cascade(xml)?

如何将math运算应用于Android维度?

我如何避免这个硬编码的math… <resources> <dimen name="uno">10dip</dimen> <dimen name="dos">6dip</dimen> <dimen name="uno_plus_dos">16dip</dimen> </resources> <Button android:layout_marginTop="@dimen/uno_plus_dos" /> …并把它转换成这样的东西? <Button android:layout_marginTop="@dimin/uno + @dimen/dos" />

哪些字符在XML属性中是无效的(除非编码)?

我不敢相信我找不到这个信息,所以: 1)哪些字符不能在没有实体编码的情况下合并到XML属性中? 显然,你需要编码报价。 那么<和>呢? 还有什么? 2)正式名单到底在哪里?