【Android之界面(布局文件layput)】从来好事天生俭,自古瓜儿苦后甜。这篇文章主要讲述Android之界面(布局文件layput)相关的知识,希望能为你提供帮助。
1。关于组件居中
① android:layout_gravity="center"
控件在包含该控件的父控件中的位置。同样,当我们在Button按钮控件中设置android:layout_gravity="left"属性时,表示该Button按钮将位于界面的左部。
文章图片
文章图片
②android:scaleType="center"截取图片中间显示
文章图片
③ android:scaleType="centerInside"
文章图片
< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> < TextView android:id="@+id/tv_title" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:text="个人中心" android:gravity="center" android:textSize="30px" android:background="#44cef6" /> < LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="4" android:gravity="center" > < ImageView android:id="@+id/img_me" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:src="https://www.songbingjia.com/android/@drawable/ic_launcher" /> < /LinearLayout> < LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="5" > < GridView android:id="@+id/person_grid_view" android:layout_width="wrap_content" android:layout_height="wrap_content" android:numColumns="3" android:stretchMode="columnWidth"> < /GridView> < /LinearLayout> < /LinearLayout>
推荐阅读
- Xamarin.Android 入门之(Bind java的jar文件+Android显示gif图片)
- 《ArcGIS Runtime SDK for Android开发笔记》——离在线一体化技术(概述)
- Android —— 内存泄漏检查
- Bash玩转脚本4之搞一套完整的Android反编译与分包工具
- Android控制ScrollView滚动
- 《ArcGIS Runtime SDK for Android开发笔记》——离在线一体化技术(离线矢量数据同步)
- 用android studio创建第一个安卓程序加载html5 页面
- 《ArcGIS Runtime SDK for Android开发笔记》——离在线一体化技术(离线矢量数据编辑)
- xp系统将excel文件转换成PDF文件的办法