<?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”
android:padding=“5dp”
tools:context=“.MainActivity”>
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:orientation=“horizontal”>
<ImageView
android:id=“@+id/iv_oyuncu”
android:layout_width=“wrap_content”
android:layout_height=“250dp”
android:layout_weight=“1”
app:srcCompat=“@drawable/tas” />
<ImageView
android:id=“@+id/iv_bilgisayar”
android:layout_width=“wrap_content”
android:layout_height=“250dp”
android:layout_weight=“1”
app:srcCompat=“@drawable/tas” />
</LinearLayout>
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginTop=“30dp”
android:orientation=“horizontal”>
<TextView
android:id=“@+id/tv_oyuncu_puan”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:textSize=“20sp”
android:text=“Oyuncu:” />
<TextView
android:id=“@+id/tv_bilgisayar_puan”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:textSize=“20sp”
android:text=“Bilgisayar:” />
</LinearLayout>
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginTop=“40dp”
android:orientation=“horizontal”>
<Button
android:id=“@+id/btn_tas”
android:layout_width=“wrap_content”
android:layout_height=“100dp”
android:layout_weight=“1”
android:textSize=“18sp”
android:text=“TAŞ” />
<Button
android:id=“@+id/btn_kagit”
android:layout_width=“wrap_content”
android:layout_height=“100dp”
android:layout_weight=“1”
android:textSize=“18sp”
android:text=“KAĞIT” />
<Button
android:id=“@+id/btn_makas”
android:layout_width=“wrap_content”
android:layout_height=“100dp”
android:layout_weight=“1”
android:textSize=“18sp”
android:text=“MAKAS” />
</LinearLayout>
</LinearLayout>
Source link