Display post actions context menu.

This commit is contained in:
Pierre
2018-03-25 09:56:09 +02:00
parent f8e2eefe68
commit 7a2177a45c
8 changed files with 91 additions and 8 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/CommentContener"
style="@style/CommentContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/PostContener"
style="@style/PostContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- Informations about user who created the post -->
<!-- Information about user who created the post -->
<LinearLayout
style="@style/PostHeader"
android:layout_width="match_parent"
@ -58,6 +58,16 @@
android:layout_height="wrap_content"
tools:text="Public" />
<ImageView
style="@style/PostActionsButton"
android:id="@+id/post_actions_btn"
android:layout_width="@dimen/post_options_btn_width"
android:layout_height="@dimen/post_options_btn_height"
android:src="@android:drawable/ic_menu_manage"
android:contentDescription="@string/post_action_btn_description"/>
</LinearLayout>