网友通过本文主要向大家介绍了Android开发学习——画横线竖线,android横线等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
Android开发学习——画横线竖线,android横线
画横线/竖线
竖线 <View android:layout_width="1dp" android:layout_height="match_parent" android:background="#66CCFF" android:layout_gravity="center_horizontal" /> 横线 <View android:layout_height="1px" android:layout_width="match_parent" android:background="#66CCFF" />