UI效果(2)

来源:互联网 发布:sendto目标端口号 编辑:程序博客网 时间:2024/06/13 09:53

> 自定义搜索框

封装了 历史搜索记录功能 & 样式 的Android自定义搜索框Search_Layout- https://github.com/Carson-Ho/Search_Layout

SuperEditText- https://github.com/Carson-Ho/SuperEditText

RelativeLayout的使用

<RelativeLayout                android:layout_width="match_parent"                android:layout_height="match_parent"                android:layout_centerVertical="true"                android:layout_marginLeft="12dp" >                <RelativeLayout                    android:id="@+id/switch_eyes_screen_layout"                    android:layout_width="match_parent"                    android:layout_height="match_parent"                    android:layout_centerVertical="true"                    android:layout_marginLeft="12dp"></RelativeLayout>                <RelativeLayout                    android:layout_width="match_parent"                    android:layout_height="match_parent"                    android:layout_centerVertical="true"                    android:layout_marginLeft="12dp"                    android:layout_toLeftOf="@+id/switch_eyes_screen_layout"></RelativeLayout></RelativeLayout>注意:(错误的布局)在一个父RelativeLayout有两个子RelativeLayout,并设置layout_toLeftOf属性,是不会起效果的。解决方案:可以其中一个相对布局替换为线性布局LinearLayout等

原创粉丝点击