我是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" " />
答案 0 :(得分:2)
您需要使用反斜杠
来转义双引号 android:text="Continue to \"What if\" "
另一种选择是使用"
XML实体作为双引号符号。
Here是关于在text属性中使用双引号的问题。
答案 1 :(得分:0)
android:text ='继续“如果”'
怎么办?发现它... thanx guyz ...