mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 09:44:59 -05:00
34 lines
1.0 KiB
XML
34 lines
1.0 KiB
XML
<?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>
|