mirror of
https://github.com/hmalik144/EasyCC_Master.git
synced 2025-12-10 03:05:29 +00:00
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/widget_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/exchangeName"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_weight="1"
|
|
android:autoSizeMaxTextSize="100sp"
|
|
android:autoSizeMinTextSize="8sp"
|
|
android:autoSizeStepGranularity="2sp"
|
|
android:autoSizeTextType="uniform"
|
|
android:gravity="center"
|
|
android:textColor="#ffffff"
|
|
tools:text="AUDGBP" />
|
|
|
|
<TextView
|
|
android:id="@+id/exchangeRate"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="2"
|
|
android:autoSizeMaxTextSize="100sp"
|
|
android:autoSizeMinTextSize="6sp"
|
|
android:autoSizeStepGranularity="2sp"
|
|
android:autoSizeTextType="uniform"
|
|
android:gravity="center"
|
|
android:textColor="#ffffff"
|
|
android:textStyle="bold"
|
|
tools:text="0.56" />
|
|
</LinearLayout> |