Files
MoGoEagleEye/modules/mogo-module-share/src/main/res/layout/item_share_btn.xml
2020-09-10 17:41:39 +08:00

40 lines
1.4 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:gravity="center"
android:orientation="vertical"
android:paddingLeft="@dimen/module_share_btn_margin_left"
android:paddingTop="@dimen/module_share_btn_margin_top">
<FrameLayout
android:layout_width="@dimen/module_share_icon_bg_width"
android:layout_height="@dimen/module_share_icon_bg_width"
android:background="@drawable/module_share_btn_bg">
<ImageView
android:id="@+id/ivShareIcon"
android:layout_width="@dimen/module_share_icon_width"
android:layout_height="@dimen/module_share_icon_width"
android:layout_gravity="center" />
</FrameLayout>
<Space
android:layout_width="wrap_content"
android:layout_height="@dimen/share_module_tv_margin_top" />
<TextView
android:id="@+id/tvShareContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="上报拥堵上报拥堵上报拥堵上报拥堵"
android:maxEms="4"
android:singleLine="true"
android:ellipsize="end"
android:textColor="@color/module_share_dialog_icon_text_color"
android:textSize="@dimen/share_module_item"
android:textStyle="bold" />
</LinearLayout>