| 21478 |
rajender |
1 |
<RelativeLayout
|
|
|
2 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
android:id="@+id/relativelayout"
|
|
|
4 |
android:layout_width="fill_parent"
|
|
|
5 |
android:layout_height="fill_parent" >
|
|
|
6 |
|
|
|
7 |
<ImageView
|
|
|
8 |
android:id="@+id/inAppNotificationImage"
|
|
|
9 |
android:layout_centerInParent="true"
|
|
|
10 |
android:layout_width="wrap_content"
|
|
|
11 |
android:layout_height="wrap_content"
|
|
|
12 |
android:src="@drawable/in_app_notification" />
|
|
|
13 |
|
|
|
14 |
<TextView
|
|
|
15 |
android:id="@+id/inAppNotificationText"
|
|
|
16 |
android:layout_width="16dp"
|
|
|
17 |
android:layout_height="wrap_content"
|
|
|
18 |
android:background="@drawable/background_notification"
|
|
|
19 |
android:layout_alignTop="@id/inAppNotificationImage"
|
|
|
20 |
android:layout_alignRight="@id/inAppNotificationImage"
|
|
|
21 |
android:gravity="center"
|
|
|
22 |
android:layout_marginTop="-4dp"
|
|
|
23 |
android:layout_marginBottom="15dp"
|
|
|
24 |
android:textSize="13dp"
|
|
|
25 |
android:textColor="#FFFFFF" />
|
|
|
26 |
</RelativeLayout>
|