summaryrefslogtreecommitdiff
path: root/gst-sdk/tutorials/android-tutorial-5/res/layout/file_dialog_row.xml
blob: 33b8ea80cb3ea58df7d6afcc2bf433bff4ffd89b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <ImageView
        android:id="@+id/fdrowimage"
        android:layout_width="wrap_content"
        android:layout_height="36dp"
        android:contentDescription="@string/icon" />

    <TextView
        android:id="@+id/fdrowtext"
        android:layout_width="0dip"
        android:layout_height="36dp"
        android:layout_weight="1"
        android:ellipsize="marquee"
        android:gravity="center_vertical"
        android:marqueeRepeatLimit="marquee_forever"
        android:scrollHorizontally="true"
        android:singleLine="true"
        android:textSize="23dp" />

</LinearLayout>