在今天我学习了安卓的界面的代码 如下:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> android:background="@color/purple_200" <RelativeLayout android:id="@+id/main_top_layout" android:layout_width="match_parent" android:layout_height="50dp"> <TextView android:layout_width="wrap_content" android:layout_height="match_parent" android:gravity="center" android:padding="10dp" android:text="@string/app_name" android:textColor="@color/black" android:textSize="18sp" android:textStyle="bold" /> <ImageView android:id="@+id/main_iv_add" android:layout_width="wrap_content" android:layout_height="match_parent" android:src="@mipmap/add" android:layout_alignParentRight="true" android:padding="10dp" /> </RelativeLayout> <ListView android:id="@+id/main_lv" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/main_top_layout" android:background="@color/purple_200" android:divider="@null" android:dividerHeight="6dp" android:padding="10dp" android:scrollbars="none" /> <ImageButton android:layout_width="50dp" android:layout_height="50dp" android:src="@mipmap/back"/> </LinearLayout>
这些仅仅一一小部分的代码,还没有完成全部的代码。
标签:总结,25,200,color,每日,代码 From: https://www.cnblogs.com/nanbei666/p/17155039.html