2025-12-19 03:08:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
2025-12-19 07:46:56 +00:00
|
|
|
android:layout_height="50dp"
|
2025-12-19 03:08:08 +00:00
|
|
|
android:background="@drawable/noti_bg_r16_white"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
2025-12-19 07:46:56 +00:00
|
|
|
tools:ignore="ResourceName">
|
2025-12-19 03:08:08 +00:00
|
|
|
|
|
|
|
|
|
2025-12-19 07:46:56 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/resident_gold"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
2025-12-19 03:08:08 +00:00
|
|
|
android:layout_weight="1"
|
2025-12-19 07:46:56 +00:00
|
|
|
android:scaleType="fitCenter"
|
|
|
|
|
android:src="@drawable/vidi_task_gold"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/resident_withdraw"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
2025-12-19 03:08:08 +00:00
|
|
|
android:layout_weight="1"
|
2025-12-19 07:46:56 +00:00
|
|
|
android:scaleType="fitCenter"
|
|
|
|
|
android:src="@drawable/vidi_task_cash"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/resident_box"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
|
android:src="@drawable/vidi_benefit_item_ongoing"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/resident_game"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
|
android:src="@drawable/vidi_task_act_game"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/resident_close"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="30dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_gravity="top"
|
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
|
android:src="@drawable/vidi_icon_close"
|
2025-12-19 08:08:50 +00:00
|
|
|
android:visibility="gone"
|
2025-12-19 07:46:56 +00:00
|
|
|
/>
|
2025-12-19 03:08:08 +00:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|