Android xml常用

来源:互联网 发布:火狐淘宝无法登陆 编辑:程序博客网 时间:2024/06/07 13:30

头:

<?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="@color/color_white"
    android:orientation="vertical" >


    <include layout="@layout/common_base_head" />


    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:fillViewport="true"
        android:scrollbars="none"
        >


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:orientation="vertical" >



</LinearLayout>
    </ScrollView>


</LinearLayout>



0 0
原创粉丝点击