позиция textView для слайд-шоу меню - PullRequest
0 голосов
/ 08 мая 2018

Xamarin Android

Я пытаюсь сделать слайд-шоу меню. Я не знаю, что я делаю не так.

Я не могу расположить textView так, как я хочу. Вид должен быть в верхней части экрана. Тем не менее, это на дне.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25px"
android:minHeight="25px"
android:background="#f2f2f2">
<RelativeLayout
    android:id="@+id/productTitleBar"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="55dp"
    android:background="#ff46a1e1">
    <TextView
        android:id="@+id/txtProductTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#FFFFFF"
        android:text="Product List"
        android:layout_gravity="center"
        android:clickable="true"
        android:layout_centerVertical="true"
        android:textSize="18dp"
        android:layout_centerHorizontal="true" />
</RelativeLayout>
<TextView
    android:id="@+id/txtDescription"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:textColor="#000000"
    android:text="Desription goes here"
    android:layout_gravity="center"
    android:clickable="true"
    android:textSize="18dp"
    android:layout_above="@+id/btnImgExpander"
    android:background="#FFFFFF"
    android:gravity="center"
    android:visibility="gone" />
<ImageView
    android:id="@+id/btnImgExpander"
    android:layout_alignParentBottom="true"
    android:layout_height="30dp"
    android:layout_width="match_parent"
    android:src="@drawable/up_arrow"
    android:background="#fff2f2f2" />
<ListView
    android:id="@+id/productListView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="55dp"
    android:layout_marginBottom="30dp"
    android:background="@android:color/background_light"
    android:fastScrollEnabled="true" />
</RelativeLayout>

У меня есть

What i have

Я хочу

What i want

Кто-то может помочь мне с этой проблемой?

1 Ответ

0 голосов
/ 09 мая 2018

android:layout_above="@+id/btnImgExpander" установлен в TextView, но android:layout_alignParentBottom="true" установлен в ImageView, который выравнивает его по дну контейнера (внешний RelativeLayout). Вы можете попробовать: android:layout_alignParentTop="true" и удалить android:layout_alignParentBottom="true"

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...