/embedding/android/resources/layout/notification_progress.xml
http://github.com/zpao/v8monkey · XML · 53 lines · 49 code · 4 blank · 0 comment · 0 complexity · 10f72d579a9c4100fe21fb93246c80a3 MD5 · raw file
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- android:paddingTop="7dp"
- android:paddingLeft="5dp"
- >
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- >
- <ImageView android:id="@+id/notificationImage"
- android:layout_width="25dp"
- android:layout_height="25dp"
- android:scaleType="fitCenter" />
- <TextView android:id="@+id/notificationTitle"
- android:textAppearance="@android:style/TextAppearance.StatusBar.EventContent.Title"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:singleLine="true"
- android:ellipsize="marquee"
- android:fadingEdge="horizontal"
- android:paddingLeft="10dp"
- />
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- >
- <TextView android:id="@+id/notificationText"
- android:textAppearance="@android:style/TextAppearance.StatusBar.EventContent"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingLeft="3dp"
- />
-
- <ProgressBar android:id="@+id/notificationProgressbar"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="1dip"
- android:layout_marginBottom="1dip"
- android:layout_marginLeft="4dip"
- android:layout_marginRight="10dip"
- android:layout_centerHorizontal="true" />
- </LinearLayout>
-
- </LinearLayout>