Skip to content

Commit

Permalink
Merge pull request #722 from chenweijia104/master
Browse files Browse the repository at this point in the history
#540 #90 lab4
  • Loading branch information
zengsn committed May 12, 2016
2 parents 8b6f4c8 + 8855f1c commit d71018d
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions app/src/main/res/layout/net1314080903106activity_main.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:id="@+id/tableLayout1" >
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="2"
android:id="@+id/tableRow1">
<TextView
android:id="@+id/textView1"
android:padding="10px"
android:gravity="center"
android:textColor="#010D18"
android:textSize="35px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title" />

</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_weight="1"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<ImageView
android:id="@+id/imageView3"
android:paddingLeft="30px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/shoe_default" />

<ImageView
android:id="@+id/imageView2"
android:paddingLeft="30px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/shoe_default" />

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="30px"
android:src="@drawable/shoe_default" />

</LinearLayout>
</TableRow>
<LinearLayout
android:orientation="horizontal"
android:layout_weight="1"
android:gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<Button
android:id="@+id/button1"
android:textColor="#000"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="再来一次" />

</LinearLayout>

</TableLayout>

0 comments on commit d71018d

Please sign in to comment.