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.明天目标

    播放光盘

  • 相关阅读:
    node版本切换工具n的使用介绍
    nrm -- npm镜像源管理
    npm vs npx
    Dnsmasq MacOS使用介绍
    Java动态生成类以及动态添加属性
    mysql表名忽略大小写问题记录
    psotgresql之大小写
    java 按字节读写二进制文件(Base64编码解码)
    java解析复杂json:JSONObject 和 JSONArray的使用
    URL编码:怎样读取特殊字符
  • 原文地址:https://www.cnblogs.com/qiangini/p/14779445.html
Copyright © 2011-2022 走看看