Advertisement
Leo1502

VIDEO: activity_main.xml (orijentacija: vertikalno)

Apr 27th, 2023
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.88 KB | Source Code | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <RelativeLayout
  4.    xmlns:android="http://schemas.android.com/apk/res/android"
  5.    xmlns:app="http://schemas.android.com/apk/res-auto"
  6.    xmlns:tools="http://schemas.android.com/tools"
  7.    android:layout_width="match_parent"
  8.    android:layout_height="match_parent">
  9.  
  10.     <LinearLayout
  11.        android:id="@+id/granica"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="2dp"
  14.        android:layout_marginHorizontal="20dp"
  15.        android:layout_below="@id/spinner3_cardview"
  16.        android:layout_centerHorizontal="true"
  17.        android:layout_marginTop="5dp"
  18.        android:background="?android:color"
  19.        android:orientation="horizontal"
  20.        tools:ignore="Smalldp" />
  21.  
  22.     <androidx.cardview.widget.CardView
  23.        android:id="@+id/spinner3_cardview"
  24.        android:layout_width="42dp"
  25.        android:layout_height="44dp"
  26.        android:layout_marginLeft="10dp"
  27.        app:cardCornerRadius="18dp"
  28.        android:layout_marginTop="30dp">
  29.  
  30.         <Spinner
  31.            android:id="@+id/spinner3"
  32.            android:layout_width="match_parent"
  33.            android:layout_height="match_parent"
  34.            android:background="?android:colorPrimary"
  35.            android:textColor="?android:textColorPrimary"
  36.            android:theme="@style/Widget.MaterialComponents.TextView" />
  37.  
  38.     </androidx.cardview.widget.CardView>
  39.  
  40.     <FrameLayout
  41.        android:layout_width="match_parent"
  42.        android:layout_height="wrap_content"
  43.        android:layout_below="@id/granica"
  44.        android:layout_centerInParent="true"
  45.        android:layout_margin="20dp">
  46.  
  47.         <VideoView
  48.            android:id="@+id/video"
  49.            android:layout_width="match_parent"
  50.            android:layout_height="match_parent"
  51.            android:onClick="video_vertical" />
  52.  
  53.     </FrameLayout>
  54.  
  55. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement