1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- This file is part of Zandy.
-
- Zandy is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- Zandy is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with Zandy. If not, see <http://www.gnu.org/licenses/>.
- -->
- <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/list_data"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:stretchColumns="1" >
- <TableRow android:layout_width="match_parent" >
- <TextView android:text="" android:id="@+id/data_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="1dip" />
- </TableRow>
- <TableRow>
- <TextView android:text="" android:id="@+id/data_content"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="3dip" />
- <WebView
- android:id="@+id/data_content_web"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="3dip" />
- </TableRow>
- </TableLayout>
-
|