~karni/ubuntuone-android-music/fix-mediastore-conflict

« back to all changes in this revision

Viewing changes to res/layout/toast_layout.xml

  • Committer: Michał Karnicki
  • Date: 2011-10-18 09:23:06 UTC
  • Revision ID: mkarnicki@gmail.com-20111018092306-1nkpui0n5uqdxhjo
Replace ViewFlipper with better discoverable SlidingDrawer.

Simplify gesture notification toast to plain image.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="utf-8"?>
2
 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
 
    android:id="@+id/toast_layout_root"
4
 
    android:orientation="horizontal"
5
 
    android:layout_width="fill_parent"
6
 
    android:layout_height="fill_parent"
7
 
    android:background="@android:drawable/toast_frame" >
8
 
    
9
 
    <ImageView
10
 
        android:id="@+id/image"
11
 
        android:layout_width="wrap_content"
12
 
        android:layout_height="fill_parent"
13
 
        android:layout_margin="10dp"
14
 
        android:gravity="center" />
15
 
        
16
 
    <TextView
17
 
        android:id="@+id/text"
18
 
        android:layout_width="wrap_content"
19
 
        android:layout_height="fill_parent"
20
 
        android:layout_marginLeft="5dp"
21
 
        android:layout_marginRight="10dp"
22
 
        android:textColor="#FFFFFF"
23
 
        android:gravity="center" />
24
 
        
25
 
</LinearLayout>