diff options
author | Docile-Alligator <chineseperson5@gmail.com> | 2022-04-25 07:15:06 +0000 |
---|---|---|
committer | Docile-Alligator <chineseperson5@gmail.com> | 2022-04-25 07:15:06 +0000 |
commit | d64fdd4e4d29ea508f0afc499e93d00bd3d2398b (patch) | |
tree | 60c7f5e96a398c6fc99a35f6cac0784e1016cedf /app/src/main/res/layout/activity_post_image.xml | |
parent | d922c67ffc4cfd38efa4abf2b59531354bea242f (diff) | |
download | infinity-for-reddit-d64fdd4e4d29ea508f0afc499e93d00bd3d2398b.tar infinity-for-reddit-d64fdd4e4d29ea508f0afc499e93d00bd3d2398b.tar.gz infinity-for-reddit-d64fdd4e4d29ea508f0afc499e93d00bd3d2398b.tar.bz2 infinity-for-reddit-d64fdd4e4d29ea508f0afc499e93d00bd3d2398b.tar.lz infinity-for-reddit-d64fdd4e4d29ea508f0afc499e93d00bd3d2398b.tar.xz infinity-for-reddit-d64fdd4e4d29ea508f0afc499e93d00bd3d2398b.tar.zst infinity-for-reddit-d64fdd4e4d29ea508f0afc499e93d00bd3d2398b.zip |
Submitting posts using another account is available in other PostXXXActivity.
Diffstat (limited to 'app/src/main/res/layout/activity_post_image.xml')
-rw-r--r-- | app/src/main/res/layout/activity_post_image.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_post_image.xml b/app/src/main/res/layout/activity_post_image.xml index fc4c15cd..b65bd576 100644 --- a/app/src/main/res/layout/activity_post_image.xml +++ b/app/src/main/res/layout/activity_post_image.xml @@ -33,6 +33,33 @@ android:layout_height="match_parent" android:orientation="vertical"> + <LinearLayout + android:id="@+id/account_linear_layout_post_image_activity" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground"> + + <pl.droidsonroids.gif.GifImageView + android:id="@+id/account_icon_gif_image_view_post_image_activity" + android:layout_width="24dp" + android:layout_height="24dp" + android:layout_marginStart="16dp" /> + + <TextView + android:id="@+id/account_name_text_view_post_image_activity" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:layout_marginStart="32dp" + android:textSize="?attr/font_default" + android:fontFamily="?attr/font_family" /> + + </LinearLayout> + <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" |