1. 程式人生 > 實用技巧 >對Internet Explorer 8中的附件進行故障排除和管理

對Internet Explorer 8中的附件進行故障排除和管理




<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background
="@mipmap/ic_launcher" android:layout_marginTop="150dp" android:layout_centerHorizontal="true"/> <EditText android:layout_width="200dp" android:layout_height="wrap_content" android:text="請輸入使用者名稱:" android:layout_marginTop="250dp" android:layout_centerHorizontal="true"/> <EditText android:layout_width
="200dp" android:layout_height="wrap_content" android:text="請輸入使用者名稱:" android:layout_marginTop="300dp" android:layout_centerHorizontal="true"/> <Button android:layout_width="100dp" android:layout_height="50dp" android:layout_centerHorizontal="true" android:layout_marginTop
="350dp" android:text="登入" android:onClick="click"/> </RelativeLayout> <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#F5F4F4" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:id="@+id/textView" android:layout_width="match_parent" android:layout_height="40dp" android:background="#00BCD4" android:enabled="true" android:gravity="center" android:text="註冊介面" android:textColor="#FF5722" android:textSize="30sp" /> <TableLayout android:layout_width="match_parent" android:layout_height="200dp" android:gravity="center"> <TableRow android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center"> <TextView android:id="@+id/name" android:layout_width="wrap_content" android:layout_height="30dp" android:enabled="true" android:text="使用者名稱:" android:textSize="20sp" android:textStyle="bold" /> <EditText android:id="@+id/etname" android:layout_width="wrap_content" android:layout_height="wrap_content" android:ems="10" android:inputType="textPersonName" /> </TableRow> <TableRow android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center"> <TextView android:id="@+id/password" android:layout_width="wrap_content" android:layout_height="30dp" android:enabled="true" android:text="密碼:" android:textSize="20sp" android:textStyle="bold" /> <EditText android:id="@+id/etpass" android:layout_width="wrap_content" android:layout_height="wrap_content" android:ems="10" android:inputType="numberPassword" /> </TableRow> </TableLayout>