アプリで使用する「行」を作成しようとしています。
「行」では、2 つのビューを使用して水平バーを作成します。
これは 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="wrap_content"
android:background="#ffffff"
android:orientation="horizontal" >
<TextView
android:id="@+id/eventname"
style="@style/T2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text="nome evento" >
</TextView>
<TextView
android:id="@+id/eventtype"
style="@style/S2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:text="tipo evento" />
<View
android:id="@+id/riga"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_alignParentTop="true"
android:background="#ffffff" />
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_above="@+id/riga"
android:background="@color/lines" />
</RelativeLayout>
これは私が得る結果です:
ここまでは順調ですね。
しかし、ビューを一番下に置くと:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:orientation="horizontal" >
<TextView
android:id="@+id/eventname"
style="@style/T2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text="nome evento" >
</TextView>
<TextView
android:id="@+id/eventtype"
style="@style/S2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:text="tipo evento" />
<View
android:id="@+id/riga"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_alignParentBottom="true"
android:background="#ffffff" />
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_above="@+id/riga"
android:background="@color/lines" />
</RelativeLayout>
これは私が得る結果です
どうすればこれを解決できますか????
ありがとうございました!!!