Android基本控件

来源:互联网 发布:无冬之夜1 mac 编辑:程序博客网 时间:2024/06/05 21:13
<TextView    android:id="@+id/text_view"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:text="@string/name"    android:textColor="#00FF00"/><EditText    android:id="@+id/edit_view"    android:hint="@string/input"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:layout_weight="1"/><!--wrap_content:包裹当前文本内容;match_parent:当前控件铺满父类容器;
#00FF00:RGB颜色
@string/*:访问资源
-->
<ImageView    android:layout_width="match_parent"    android:layout_height="match_parent"    android:src="@drawable/x"    android:background="#00FF00"/>
<ImageButton    android:layout_width="match_parent"    android:layout_height="match_parent"    android:src="@drawable/x"    android:background="#00FF00"/>
0 0
原创粉丝点击