左侧的Board View和rigth Landscape的文本视图

时间:2017-10-02 15:32:58

标签: android android-layout

我希望我的Landspace看起来像这样

enter image description here

但是当我使用RelativeLayout

时它看起来像这样

enter image description here

我也尝试使用LinearLayout,但它不起作用 这是我的xml代码

<img src="pepsi.png" ..>

1 个答案:

答案 0 :(得分:0)

也许可以这样做:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent">

<co.edu.BoardView
    android:id="@+id/board"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:layout_marginTop="5dp"/>

<LinearLayout
    android:layout_width="0dp"
    android:layout_weight="1"
    android:orientation="vertical"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/TextView5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="Name" />

    <TextView
        android:id="@+id/TextView6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="Name" />

    <TextView
        android:id="@+id/TextView7"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="Name" />

    <TextView
        android:id="@+id/TextView8"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="Name" />
</LinearLayout>