Advertisement
fakhrycodepolitan

item_sub_task.xml

Nov 23rd, 2022
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.97 KB | Source Code | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="wrap_content"
  7.    android:layout_marginBottom="8dp"
  8.    android:gravity="center_vertical"
  9.    android:orientation="horizontal">
  10.  
  11.     <ImageButton
  12.        android:id="@+id/btnDoneSubTask"
  13.        android:layout_width="wrap_content"
  14.        android:layout_height="wrap_content"
  15.        android:background="@android:color/transparent"
  16.        android:src="@drawable/ic_done_task_24"
  17.        app:tint="@color/design_default_color_on_secondary" />
  18.  
  19.     <TextView
  20.        android:id="@+id/tvSubTasks"
  21.        android:layout_width="match_parent"
  22.        android:layout_height="wrap_content"
  23.        android:layout_marginStart="8dp"
  24.        tools:text="@string/cari_uang_dulu" />
  25. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement