Clean app and add delete
This commit is contained in:
5
app/src/main/res/drawable/ic_delete.xml
Normal file
5
app/src/main/res/drawable/ic_delete.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#000000"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8,9h8v10L8,19L8,9zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"/>
|
||||
</vector>
|
@ -5,9 +5,9 @@
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="3"
|
||||
android:layout_weight="5"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
@ -26,6 +26,14 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
app:srcCompat="@drawable/ic_share"
|
||||
android:contentDescription="@string/share_button" />
|
||||
android:contentDescription="@string/share_button"
|
||||
app:srcCompat="@drawable/ic_share" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/compressed_delete"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:contentDescription="@string/delete"
|
||||
app:srcCompat="@drawable/ic_delete" />
|
||||
</LinearLayout>
|
@ -12,5 +12,6 @@
|
||||
<string name="settings_custom_size_hint">Enter Size in MB</string>
|
||||
<string name="files">Files</string>
|
||||
<string name="youtube">Youtube</string>
|
||||
<string name="share_button">Share Button</string>
|
||||
<string name="share_button">Share</string>
|
||||
<string name="delete">Delete</string>
|
||||
</resources>
|
Reference in New Issue
Block a user