android:text =“”如果“”如何在Android(android:text)属性中写入此文本,以及Android中的双引号

时间:2014-01-21 07:23:02

标签: android-button

我是Android的新手,我想要的是显示一个包含文本的按钮,包括下面给出的双引号......但是我收到一个错误.....“属性缺少Android名称空间前缀”< / p>

        <Button
            android:id="@+id/button3"
            android:background="@drawable/nxtbckbutton"
            android:layout_width="wrap_content"
            android:textColor="#ffffff"
            android:layout_height="wrap_content"
            android![enter image description here][1]:text="Continue to  "What if" " />

2 个答案:

答案 0 :(得分:2)

您需要使用反斜杠

来转义双引号

android:text="Continue to \"What if\" "

另一种选择是使用&quot; XML实体作为双引号符号。

Here是关于在text属性中使用双引号的问题。

答案 1 :(得分:0)

android:text ='继续“如果”'

怎么办?

发现它... thanx guyz ...