zoukankan      html  css  js  c++  java
  • 2021/5/5团队

    1.今日收获内容
    进入软件的主页面

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
    
        <android.support.design.widget.AppBarLayout
            android:id="@+id/appbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    
            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="?attr/colorPrimary"
                android:visibility="gone"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
    
            <include layout="@layout/include_music_tab_bar" />
        </android.support.design.widget.AppBarLayout>
    
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
    
            <android.support.v4.view.ViewPager
                android:id="@+id/viewpager"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
    
            <include
                layout="@layout/include_play_bar"
                android:layout_width="match_parent"
                android:layout_height="@dimen/play_bar_height"
                android:layout_gravity="bottom" />
        </FrameLayout>
    </LinearLayout>



    2.遇到的问题
    感觉页面挺好看的

    3.明天目标

    播放光盘

  • 相关阅读:
    1月27日 常用函数
    1月25日 JavaScript的DOM操作
    1月25日 JavaScript简介与语法
    1月24日 样式表案例
    5月14日 数字顺序打印并求和
    5月14日 根据班级人数,求平局分,最大值,最小值
    5月14日 九九乘法口诀
    5月14日 打印100以内与7有关的数
    5月14日 函数练习 100以内奇数的和
    5月14日 枚举类型
  • 原文地址:https://www.cnblogs.com/qiangini/p/14779445.html
Copyright © 2011-2022 走看看