mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-14 19:38:21 -05:00
20 lines
609 B
XML
20 lines
609 B
XML
|
<?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" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/imageView1"
|
||
|
android:layout_width="140dp"
|
||
|
android:layout_height="140dp"
|
||
|
android:src="@drawable/ic_launcher" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/textView1"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ems="10" />
|
||
|
|
||
|
</LinearLayout>
|