线性布局格式一直显示错误,我已尽我所能,但仍然无法正常工作。?
The linear layout format keeps showing errors, I've tried all I can but still not working.?
一直在尝试构建此布局,但我还没有 运行
'''
<?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:background="#90A4AE"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="4dp">
</android.support.v7.widget.Toolbar>
'''
您忘记关闭线性布局了!
使用下面的代码。
永远记住,您必须在末尾使用“.../>”或在其中添加小部件后使用“”来关闭标签...
请注意,我还用 material 库
中的 tablayout 替换了旧的支持库 tablayout
<?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:background="#90A4AE"
android:orientation="vertical">
<com.google.android.material.tabs.TabLayout
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="4dp">
</com.google.android.material.tabs.TabLayout>
</LinearLayout>
一直在尝试构建此布局,但我还没有 运行 '''
<?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:background="#90A4AE"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="4dp">
</android.support.v7.widget.Toolbar>
'''
您忘记关闭线性布局了! 使用下面的代码。 永远记住,您必须在末尾使用“.../>”或在其中添加小部件后使用“”来关闭标签...
请注意,我还用 material 库
中的 tablayout 替换了旧的支持库 tablayout<?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:background="#90A4AE"
android:orientation="vertical">
<com.google.android.material.tabs.TabLayout
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="4dp">
</com.google.android.material.tabs.TabLayout>
</LinearLayout>