Размещение Textview в ImageView Совместимо на каждом экране - PullRequest
0 голосов
/ 09 октября 2018

У меня есть 2 изображения и 4 текстовых просмотра, и я хочу разместить текстовые просмотры на изображениях, моя текущая работа такая же.

Мне нужно разместить 4 текстовых просмотра как 2. Изображение.Есть ли способ сделать это без использования DP, потому что, если я использую DP, при изменении разрешения выглядит ужасно.

Моя текущая работа:

Current Work

Я хочу, чтобы это выглядело так:

I want to make it like that.

Код моей активности т

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:id="@+id/container"

    android:layout_width="match_parent"
    android:layout_height="match_parent"

    android:background="@color/grey"
    tools:context=".MainActivity">


  <LinearLayout
      android:layout_width="wrap_content"
      android:layout_height="300dp">
      <LinearLayout
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="horizontal">
         <android.support.constraint.ConstraintLayout
             android:layout_width="0dp"
             android:layout_weight="1"
             android:layout_height="match_parent">


          <ImageView
              android:layout_width="0dp"
              android:layout_height="match_parent"
              android:src="@drawable/solayak"
              />
             <TextView
                 android:layout_width="match_parent"
                 android:layout_height="match_parent"
                 android:text="Deneme"
                 android:gravity=  "center"

                 />
         </android.support.constraint.ConstraintLayout>

          <android.support.constraint.ConstraintLayout
              android:layout_width="0dp"
              android:layout_weight="1"
              android:layout_height="match_parent">

          <ImageView
              android:layout_width="0dp"
              android:layout_height="match_parent"
              android:layout_weight="1"
              android:src="@drawable/sagayak"
              />
          </android.support.constraint.ConstraintLayout>
      </LinearLayout>



  </LinearLayout>



    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_alignParentBottom="true"
        android:layout_gravity="center"
        android:gravity="center_vertical|center_horizontal"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="match_parent"
            android:layout_height="70dp"
            app:srcCompat="@drawable/arti_buton_yeni" />

        <ImageView
            android:id="@+id/imageView3"
            android:layout_width="match_parent"
            android:layout_height="70dp"
            app:srcCompat="@drawable/eksibutton_yeni" />

    </LinearLayout>


    <include
        layout="@layout/bottomnavigation"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true" />

</RelativeLayout>
...