Newer
Older
MathsCalc / app / src / main / res / layout / activity_card_show.xml
bello on 25 Nov 2018 778 bytes 增加卡片收集功能
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/show_base_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:id="@+id/show_image_view"
        android:layout_width="match_parent"
        android:layout_centerInParent="true"
        android:layout_height="wrap_content" />

    <ImageView
        android:id="@+id/new_card_image"
        android:layout_width="wrap_content"
        android:src="@drawable/ic_new_card_top"
        android:visibility="gone"
        android:layout_centerHorizontal="true"
        android:layout_below="@+id/show_image_view"
        android:layout_height="wrap_content" />

</RelativeLayout>