layout
濯君
求知,内敛,有趣,勤静
展开
-
TextView与EditText水平对齐
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:paddingTop="15sp"> <TextView原创 2016-10-11 11:27:38 · 6145 阅读 · 0 评论 -
在水平和垂直方向都加上scrollview
原文<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scrollbars="vertical"> <Horizonta转载 2016-10-15 18:45:56 · 636 阅读 · 0 评论 -
自定义标题栏
一:标题栏布局<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:background="#a696a6" android:layout_width="mat原创 2017-01-15 16:17:22 · 595 阅读 · 0 评论 -
TableLayout 与GridLayout 列扩展和行扩展
一:TableLayout支持列扩展不支持行扩展 TableLayout列扩展,比如一个button扩展到两列 android:layout_span属性<Button android:id="@+id/btn_zero" android:text="0" android:layout_span="2原创 2017-01-16 14:41:38 · 1303 阅读 · 0 评论