Skip to content

Commit

Permalink
xianrui
Browse files Browse the repository at this point in the history
  • Loading branch information
wow121 committed Nov 6, 2013
2 parents 0cad07f + f78ec75 commit e8c5249
Show file tree
Hide file tree
Showing 11 changed files with 707 additions and 5 deletions.
2 changes: 2 additions & 0 deletions baby/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@
<activity android:name=".activity.doctor.SearchResultActivity" android:screenOrientation="portrait" android:configChanges="orientation|keyboardHidden"></activity>
<activity android:name=".activity.doctor.AcademicAbstractsActivity" android:screenOrientation="portrait" android:configChanges="orientation|keyboardHidden"></activity>
<activity android:name=".activity.doctor.MeetingNotifyAcitivity" android:screenOrientation="portrait" android:configChanges="orientation|keyboardHidden"></activity>

<activity android:name=".activity.DoctorChangePassword" android:screenOrientation="portrait" android:configChanges="orientation|keyboardHidden"></activity>
<!-- 婴儿界面 -->
<activity android:name=".activity.baby.MainBabyActivity" android:screenOrientation="portrait" android:configChanges="orientation|keyboardHidden"></activity>
<activity android:name=".activity.baby.BabyMyActivity" android:screenOrientation="portrait" android:configChanges="orientation|keyboardHidden"></activity>
Expand Down
Binary file added baby/res/drawable-hdpi/right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions baby/res/layout/baby_detail_activity.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?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" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#758AA6" >
<Button
android:id="@+id/btnBack"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/btn_back"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="4"
android:gravity="center"
android:text="@string/baby_detail_title"
android:textColor="#FFFFFF" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#758AA6"/>

</LinearLayout>

<TextView
android:id="@+id/tvDetailDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="10dp"
android:layout_marginBottom="6dp"
android:background="@drawable/bg_setting"
android:text="2013/9/2" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_marginBottom="10dp">
<TextView
android:id="@+id/tvDetailImage"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="6dp"
android:drawableTop="@drawable/ic_launcher"
android:text="@string/manage_man"/>
<EditText
android:id="@+id/etDetail"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</LinearLayout>

</LinearLayout>
Loading

0 comments on commit e8c5249

Please sign in to comment.