Горизонтальная линия, заполняющая пространство между TextView и родителем - PullRequest
0 голосов
/ 29 февраля 2012

В принципе, я хотел бы получить эффект, подобный показанному на рисунке. Горизонтальная линия с обеих сторон TextView. Как я могу это сделать?

enter image description here

Ответы [ 2 ]

1 голос
/ 29 февраля 2012

Это просто, как::

  <View
        android:id="@+id/hline1"
        android:layout_width="fill_parent"
        android:layout_height="5dip"
        android:layout_marginBottom="2dp"
        android:layout_marginTop="10dp"
        android:background="#000000" />

Ваш XML-формат похож на::

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFFFF0"
    android:orientation="vertical" >

    <View
        android:id="@+id/hline1"
        android:layout_width="fill_parent"
        android:layout_height="5dip"
        android:layout_marginBottom="2dp"
        android:layout_marginTop="10dp"
        android:layout_toLeftOf="@+id/header1"
        android:background="#000000" />

    <TextView
        android:id="@+id/header1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:text="   Header   "
        android:textColor="#000000"
        android:textSize="20dp"
        android:textStyle="bold" />

    <View
        android:id="@+id/hline2"
        android:layout_width="fill_parent"
        android:layout_height="5dip"
        android:layout_marginTop="10dp"
        android:layout_toRightOf="@+id/header1"
        android:background="#000000" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/header1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="5dp"
        android:text="Some Text Goes to here..........................."
        android:textColor="#000000" />

</RelativeLayout>
0 голосов
/ 29 февраля 2012

Создайте простую форму для рисования и установите ее как левую / правую для рисования в TextView. Ширина TextView должна быть Fill_Parent.

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