Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 198 B |
After Width: | Height: | Size: 189 B |
Before Width: | Height: | Size: 132 B After Width: | Height: | Size: 132 B |
After Width: | Height: | Size: 129 B |
Before Width: | Height: | Size: 196 B After Width: | Height: | Size: 196 B |
After Width: | Height: | Size: 192 B |
Before Width: | Height: | Size: 279 B After Width: | Height: | Size: 279 B |
After Width: | Height: | Size: 277 B |
Before Width: | Height: | Size: 357 B After Width: | Height: | Size: 357 B |
After Width: | Height: | Size: 353 B |
@ -0,0 +1,37 @@ |
|||
<?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:orientation="vertical"> |
|||
|
|||
<TextView |
|||
android:id="@+id/post_share_button" |
|||
android:layout_width="wrap_content" |
|||
android:layout_height="35dp" |
|||
android:background="?android:attr/selectableItemBackground" |
|||
android:drawablePadding="5dp" |
|||
android:drawableStart="@drawable/ic_share" |
|||
android:gravity="center_vertical" |
|||
android:paddingBottom="6dp" |
|||
android:paddingEnd="12dp" |
|||
android:paddingStart="12dp" |
|||
android:paddingTop="6dp" |
|||
android:text="@string/post_share_button" |
|||
android:textColor="@color/primary_text" /> |
|||
|
|||
<TextView |
|||
android:id="@+id/delete_post" |
|||
android:layout_width="wrap_content" |
|||
android:layout_height="35dp" |
|||
android:background="?android:attr/selectableItemBackground" |
|||
android:drawablePadding="5dp" |
|||
android:drawableStart="@drawable/ic_delete_white" |
|||
android:gravity="center_vertical" |
|||
android:paddingBottom="6dp" |
|||
android:paddingEnd="12dp" |
|||
android:paddingStart="12dp" |
|||
android:paddingTop="6dp" |
|||
android:text="@string/post_delete_button" |
|||
android:textColor="@color/primary_text" /> |
|||
|
|||
</LinearLayout> |
@ -1,19 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<menu xmlns:android="http://schemas.android.com/apk/res/android" |
|||
xmlns:app="http://schemas.android.com/apk/res-auto" |
|||
xmlns:tools="http://schemas.android.com/tools" |
|||
tools:context=".activities.topic.TopicActivity"> |
|||
|
|||
<item |
|||
android:id="@+id/post_share_button" |
|||
android:icon="@drawable/ic_share" |
|||
android:title="@string/post_share_button" |
|||
app:showAsAction="never" /> |
|||
|
|||
<item |
|||
android:id="@+id/delete_post" |
|||
android:icon="@drawable/ic_delete" |
|||
android:title="@string/post_delete_button" |
|||
app:showAsAction="never" /> |
|||
|
|||
</menu> |