码迷,mamicode.com
首页 > 移动开发 > 详细

Android padding 和margin

时间:2018-08-03 00:53:47      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:match   height   nbsp   isp   tom   size   click   scaletype   XML   

技术分享图片

技术分享图片
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    
    android:orientation="vertical">
    <ImageView
        android:src="@drawable/ocean"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:scaleType="centerCrop"
        android:layout_marginBottom="0dp" />
    <TextView
        android:text="You‘re invited!"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="@android:color/white"
        android:textSize="45sp"
        android:paddingLeft="8dp"
        android:background="#009688"/>

    <TextView
        android:text="Bonfire at the beach"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="@android:color/white"
        android:paddingLeft="8dp"
        android:textSize="24sp"
        android:background="#009688"/>

</LinearLayout>
View Code

 

Android padding 和margin

标签:match   height   nbsp   isp   tom   size   click   scaletype   XML   

原文地址:https://www.cnblogs.com/superxuezhazha/p/9410827.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!