mirror of
				https://github.com/KokaKiwi/BarInsta
				synced 2025-11-04 13:35:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			XML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			XML
		
	
	
		
			Executable File
		
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<LinearLayout 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"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="match_parent"
 | 
						|
    android:orientation="vertical"
 | 
						|
    tools:context=".activities.DirectMessages">
 | 
						|
 | 
						|
    <include
 | 
						|
        android:id="@+id/toolbar"
 | 
						|
        layout="@layout/layout_include_toolbar" />
 | 
						|
 | 
						|
    <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
 | 
						|
        android:id="@+id/swipeRefreshLayout"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="0dp"
 | 
						|
        android:layout_weight="8">
 | 
						|
 | 
						|
        <androidx.recyclerview.widget.RecyclerView
 | 
						|
            android:id="@+id/rvDirectMessages"
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="match_parent" />
 | 
						|
    </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
 | 
						|
 | 
						|
    <LinearLayout
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="wrap_content">
 | 
						|
 | 
						|
        <EditText
 | 
						|
            android:id="@+id/commentText"
 | 
						|
            android:layout_width="0dp"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_weight="2"
 | 
						|
            android:gravity="bottom"
 | 
						|
            android:hint="@string/dm_hint"
 | 
						|
            android:importantForAutofill="no"
 | 
						|
            android:inputType="textMultiLine"
 | 
						|
            android:maxLength="2200"
 | 
						|
            android:maxLines="10"
 | 
						|
            android:paddingStart="8dp"
 | 
						|
            android:paddingLeft="8dp"
 | 
						|
            android:paddingEnd="4dp"
 | 
						|
            android:paddingRight="4dp"
 | 
						|
            android:scrollHorizontally="false"
 | 
						|
            android:visibility="visible" />
 | 
						|
 | 
						|
        <androidx.appcompat.widget.AppCompatImageView
 | 
						|
            android:id="@+id/image"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_gravity="center"
 | 
						|
            android:background="?selectableItemBackgroundBorderless"
 | 
						|
            android:clickable="true"
 | 
						|
            android:focusable="true"
 | 
						|
            android:padding="4dp"
 | 
						|
            android:visibility="visible"
 | 
						|
            app:srcCompat="@drawable/ic_image_24" />
 | 
						|
 | 
						|
        <androidx.appcompat.widget.AppCompatImageView
 | 
						|
            android:id="@+id/commentSend"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_gravity="center"
 | 
						|
            android:background="?selectableItemBackgroundBorderless"
 | 
						|
            android:clickable="true"
 | 
						|
            android:focusable="true"
 | 
						|
            android:paddingStart="4dp"
 | 
						|
            android:paddingLeft="4dp"
 | 
						|
            android:paddingTop="4dp"
 | 
						|
            android:paddingEnd="8dp"
 | 
						|
            android:paddingRight="8dp"
 | 
						|
            android:paddingBottom="4dp"
 | 
						|
            android:visibility="visible"
 | 
						|
            app:srcCompat="@drawable/ic_send_24" />
 | 
						|
    </LinearLayout>
 | 
						|
</LinearLayout> |