mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-07 11:18:46 +00:00
23 lines
754 B
XML
23 lines
754 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent">
|
||
|
|
||
|
<ScrollView
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent">
|
||
|
|
||
|
<LinearLayout android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent" android:orientation="vertical">
|
||
|
|
||
|
<TableLayout
|
||
|
android:id="@+id/quoteTable"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</ScrollView>
|
||
|
</LinearLayout>
|