Android
玖炅
这个作者很懒,什么都没留下…
展开
-
Android设计与开发——Layout课堂笔记
在Android studio建立新页面 Res->layout->右键new->Activity->Empty Activity 1.布局三个按钮 <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent"> <Button android:layout_width="150dp" android原创 2020-09-23 22:05:56 · 259 阅读 · 0 评论 -
Android设计与开发——Button课堂笔记
一、Button基本属性 1.普通按钮 <Button android:layout_width="match_parent" android:layout_height="80dp" android:text="CLICK" android:background="#2196F3" android:textColor="#ffffff" android:shadowColor="#515151" android:shadowDx="10"原创 2020-09-23 21:45:11 · 243 阅读 · 0 评论