1.TextView
以下 設置基本的寬度,高度,值,控件位置,默認值等等html
<TextView android:layout_width="100dp" android:layout_height="wrap_content" android:gravity="right" android:text="用戶名" />
2.EditText
以下:這個是個編輯標籤 至關於input type=‘text’ 設置基本的寬度,高度,當點擊這個標籤時。會自動調用輸入鍵盤android
<EditText android:layout_width="300dp" android:layout_height="wrap_content" />
3.Button標籤
以下:設置id 至關於html的id 設置寬度高度,默認值等this
<Button android:id="@+id/button5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text= "button5" android:layout_weight="1"/>
4.Android中RelativeLayout各個屬性的含義code
Android:layout_above="@id/xxx" --將控件置於給定ID控件之上 android:layout_below="@id/xxx" --將控件置於給定ID控件之下 android:layout_toLeftOf="@id/xxx" --將控件的右邊緣和給定ID控件的左邊緣對齊 android:layout_toRightOf="@id/xxx" --將控件的左邊緣和給定ID控件的右邊緣對齊 android:layout_alignLeft="@id/xxx" --將控件的左邊緣和給定ID控件的左邊緣對齊 android:layout_alignTop="@id/xxx" --將控件的上邊緣和給定ID控件的上邊緣對齊 android:layout_alignRight="@id/xxx" --將控件的右邊緣和給定ID控件的右邊緣對齊 android:layout_alignBottom="@id/xxx" --將控件的底邊緣和給定ID控件的底邊緣對齊 android:layout_alignParentLeft="true" --將控件的左邊緣和父控件的左邊緣對齊 android:layout_alignParentTop="true" --將控件的上邊緣和父控件的上邊緣對齊 android:layout_alignParentRight="true" --將控件的右邊緣和父控件的右邊緣對齊 android:layout_alignParentBottom="true" --將控件的底邊緣和父控件的底邊緣對齊 android:layout_centerInParent="true" --將控件置於父控件的中心位置 android:layout_centerHorizontal="true" --將控件置於水平方向的中心位置 android:layout_centerVertical="true" --將控件置於垂直方向的中心位置
5.android bundle
以下:就把name爲張三這個數據從A傳到了B.xml
Intent it = new Intent(A.this,B.class); Bundle bundle = new Bundle(); bundle.putString("name","張三"); it.putExtrats(bundle); startActivity(it);
6.安卓下拉框htm
html 中的下拉框是 select標籤加一些option android中的下拉框是Spinner組件 以下將一個下拉框傳到頁面 spinner = (Spinner) findViewById(R.id.spinner); //數據 data_list = new ArrayList<String>(); data_list.add("北京"); data_list.add("上海"); data_list.add("廣州"); data_list.add("深圳"); //適配器 arr_adapter= new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, data_list); //設置樣式 arr_adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); //加載適配器 spinner.setAdapter(arr_adapter); 還須要設置靜態資源 array.xml <?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="spingarr"> <item>北京</item> <item>上海</item> <item>廣州</item> <item>深圳</item> </string-array> </resources>
7.android頁面之間的跳轉utf-8
html 當中跳轉直接用 a標籤 或者js的href android則須要用組件 Intent Intent intent = new Intent(SecondActivity.this,ThirdActivity.class); startActivity(intent); //表示從SecondActivity跳到ThirdActivity