1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fullscreen_content"
style="?buttonBarStyle"
android:background="@color/black"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".SoundroidMain" >
<TextView
android:id="@+id/timeDisplay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:layout_weight="1"
android:enabled="true"
android:gravity="center_horizontal"
android:height="64dp"
android:minHeight="48dp"
android:scrollbars="none"
android:textColor="#FFFFFF" />
<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
layout="@layout/transport_layout" />
<ListView
android:id="@+id/main_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="3"
android:textColor="@color/white" >
</ListView>
<include
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_weight="1"
layout="@layout/menu_layout" />
</LinearLayout> |