@rg070836rg
2015-08-16T15:13:38.000000Z
字数 2729
阅读 1378
安卓
安卓的布局,RelativeLayout配LinearLayout
android:background="@drawable/edit_shape"用xml文件来实现圆角
<?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"
android:background="#377EB4" >
<LinearLayout
android:id="@+id/username"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:gravity="center"
android:orientation="horizontal" >
<EditText
android:id="@+id/et_name"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_weight="1"
android:background="@drawable/edit_shape"
android:ems="10"
android:inputType="textPersonName" >
<requestFocus />
</EditText>
</LinearLayout>
<LinearLayout
android:id="@+id/password"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/username"
android:layout_below="@+id/username"
android:layout_marginTop="15dp"
android:gravity="center"
android:orientation="horizontal" >
<EditText
android:id="@+id/et_psw"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_weight="1"
android:background="@drawable/edit_shape"
android:ems="10"
android:inputType="textPassword" />
</LinearLayout>
<LinearLayout
android:id="@+id/log_btn"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/password"
android:layout_below="@+id/password"
android:layout_marginTop="15dp"
android:gravity="center"
android:orientation="horizontal" >
<Button
android:id="@+id/login_btn"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:background="@drawable/shape"
android:text="登陆"
android:textColor="#ffffff" />
</LinearLayout>
<RelativeLayout
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/log_btn"
android:layout_below="@+id/log_btn"
android:layout_marginTop="15dp"
android:background="#377EB4" >
<TextView
android:id="@+id/for_psw"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginRight="25dp"
android:text="忘记密码?"
android:textColor="#FFFFFF" />
<TextView
android:id="@+id/qui_reg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginRight="22dp"
android:layout_toLeftOf="@+id/for_psw"
android:typeface="monospace"
android:text="快速注册"
android:textColor="#FFFFFF" />
</RelativeLayout>
</RelativeLayout>
typeFace = Typeface.createFromAsset(getAssets(), "fonts/01.ttf");
fp = (TextView) findViewById(R.id.for_psw);
fp.setTypeface(typeFace);
<activity android:name="com.example.videotest.Res_View" >
</activity>