24 lines
No EOL
939 B
XML
24 lines
No EOL
939 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/main_notes"
|
|
android:background="?attr/card_bg"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<LinearLayout android:id="@+id/header_layout"
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/dashHeaderHeight">
|
|
<TextView android:id="@+id/notes_text"
|
|
android:text="@string/map_widget_av_notes"
|
|
style="?attr/dashboardSubHeaderStyle"/>
|
|
<Button android:id="@+id/show_all"
|
|
android:text="@string/show_all"
|
|
style="?attr/dashboardGeneralButtonStyle"/>
|
|
</LinearLayout>
|
|
<LinearLayout android:id="@+id/notes"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout> |