Page 317 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 317
인천전자마이스터고 전자회로설계과
Button btnRental = (Button) findViewById(R.id.btnRental);
}
public void onClick1(View view) { // 대출/반납 버튼을 눌렀을 경우
Intent intent = new Intent(this, RentalActivity.class); // RentalActivity.java
실행
// 이동할 액티비티의 클래스 오브젝트 전달
startActivity(intent);
}
}
<activity_rental.xml> // 회원 인증 화면 디자인
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context="com.example.user.appclient.MainActivity">
<EditText
android:id="@+id/etPhone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="178dp"
android:inputType="phone"
android:hint="phone number"
android:enabled="false" >
<requestFocus />
</EditText>
<Button
android:id="@+id/btnSendSMS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/etPhone"
android:layout_centerHorizontal="true"
android:text="전송
- 310 -