aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/AndroidBootstrap/res/layout/bootstrap_thumbnail.xml
blob: fb3b430428edfa79a1b62bf9eb9ad5e4a95d8d6a (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
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/container"
    android:duplicateParentState="true"
    android:padding="@dimen/padding_small"
    android:orientation="horizontal">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/placeholder"
        android:orientation="vertical"
        android:gravity="center" 
        android:padding="16dp">
        
        <com.beardedhen.androidbootstrap.utils.AutoResizeTextView
            android:id="@+id/dimensionsLabel"   
	        android:layout_width="match_parent"
	        android:layout_height="100dp"
	        android:ellipsize="none"
	        android:gravity="center"
	        android:maxLines="1"
	        android:textSize="100sp" 
	        android:textColor="@color/bthumbnail_font"/>

        
    </LinearLayout>
    
    

</LinearLayout>