Skip to content

Instantly share code, notes, and snippets.

@PauloCeami
Created September 21, 2017 01:07
Show Gist options
  • Save PauloCeami/d9e637afd3816788651328ca8b3d8763 to your computer and use it in GitHub Desktop.
Save PauloCeami/d9e637afd3816788651328ca8b3d8763 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linear_buttom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/btn_concluir"
style="?android:textAppearanceSmall"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_weight="1"
android:background="@color/verde_destaq"
android:text="Concluir Pedido"
android:textSize="18sp"
android:textStyle="bold" />
</LinearLayout>
<LinearLayout
android:id="@+id/linear_do_scrool"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
<Spinner
android:id="@+id/mSpinnerprod"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_gravity="center_vertical"
android:layout_marginTop="6dp"
android:textSize="15dp" />
<SearchView
android:id="@+id/my_searchviewprod"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:textSize="10dp"></SearchView>
<TextView
android:id="@+id/textView14"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:gravity="center_horizontal"
android:text="pressione e segure para ver os itens comprados"
android:textColor="#000000"
android:textSize="13sp"
android:textStyle="bold" />
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recyclerviewprod"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
<!-- *************** fim views ******************* -->
</LinearLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment