<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_gravity="center_vertical"
|
android:gravity="center_vertical"
|
android:paddingLeft="10dip"
|
android:paddingRight="10dip" >
|
|
<LinearLayout
|
android:id="@+id/notify_linearLayout1"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center_vertical"
|
android:orientation="horizontal" >
|
|
<LinearLayout
|
android:id="@+id/notify_linearLayout2"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent"
|
android:gravity="center_vertical" >
|
|
<ImageView
|
android:id="@+id/noitfy_icon"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="5.0dp"
|
android:layout_marginRight="10.0dp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/notify_linearLayout3"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="5dip"
|
android:orientation="vertical" >
|
|
<TextView
|
android:id="@+id/notify_text"
|
style="@style/NotificationTitle"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="2dip"
|
android:ellipsize="end"
|
android:singleLine="true" />
|
|
<RelativeLayout
|
android:id="@+id/RelativeLayout01"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" >
|
|
<TextView
|
android:id="@+id/notify_state"
|
style="@style/NotificationText"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentLeft="true"
|
android:layout_marginLeft="2dip"
|
android:singleLine="true" />
|
|
<TextView
|
android:id="@+id/notify_speed"
|
style="@style/NotificationText"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentRight="true"
|
android:singleLine="true" />
|
</RelativeLayout>
|
</LinearLayout>
|
</LinearLayout>
|
|
<ProgressBar
|
android:id="@+id/notify_processbar"
|
style="?android:attr/progressBarStyleHorizontal"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_below="@+id/notify_linearLayout1" />
|
|
</RelativeLayout>
|