小白起步阶段,百思不得其解,望各位大佬帮忙看一下
<?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"
android:layout_width="match_parent"
android:layout_height="wrap_parent"
android:text="第一个TextView"/>
android:layout_width="match_parent"
android:layout_height="wrap_parent"
android:layout_text="第二个TextView"
/>
代码好好的提交后标签就消失了。。。
android:layout_text="第二个TextView"这句是不是错了,应该是android:ltext="第二个TextView"
android:layout_text="第二个TextView"这句是不是错了,应该是android:text="第二个TextView",上一个答案多打了个l
少了TextView标签
<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_parent"
android:text="第一个TextView"/>
android:layout_width="match_parent"
android:layout_height="wrap_parent"
android:layout_text="第二个TextView"
/>
<?xmlversion="1.0"encoding="utf-8"?>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="第一个TextView"/>
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="第二个TextView"
/>
这样写
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。