我正在尝试在android studio中重新编写以下布局:
因为我在Android的东西是新的,我首先尝试使用LinearLayout,并认为这可能不可能用它。现在我正在尝试使用RelativeLayout我已经用颜色创建了这个块:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="80dp"
android:background="@color/red_top">
</RelativeLayout>
现在我想问一下,如何将它分开,就像它在同一版面的顶部图像1栏和底部图像2所示,我怎样才能放置相同的边框?
答案 0 :(得分:17)
您可以使用以下xml代码执行此操作:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/custom_toast_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#CD96CD"
android:text="TEXT" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:background="#CD96CD"
android:text="TEXT" />
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="#000000" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:background="#CD96CD"
android:text="TEXT" />
</LinearLayout>
</LinearLayout>
答案 1 :(得分:1)
<?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" >
<LinearLayout
android:id="@+id/FirstLinearLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/FirstTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TEXT_ONE" />
</LinearLayout>
<LinearLayout
android:id="@+id/SecondLinearLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/FirstLinearLayout"
android:orientation="horizontal">
<TextView
android:id="@+id/SecondTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TEXT_TWO" />
<TextView
android:id="@+id/ThirdTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TEXT_Three" />
</LinearLayout>
首先,您需要一个容器来容纳所有组件;在我的例子中,我所说的容器是RelativeLayout
。相对布局允许他们的孩子使用相应的ID放置在他们的位置。看看我如何使用LinearLayout
定位其他两个android:layout_below="@+id/FirstLinearLayout"
。
如果你真的坚持让它们在同一个版面中,请使用相对布局并按如下方式定位TextView
:
<?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" >
<TextView
android:id="@+id/FirstTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TEXT_ONE" />
<TextView
android:id="@+id/SecondTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/FirstTextView"
android:text="TEXT_TWO" />
<TextView
android:id="@+id/ThirdTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/FirstTextView"
android:layout_toRightOf="@+id/SecondTextView"
android:text="TEXT_Three" />
</RelativeLayout>
我希望这可以帮助你。
答案 2 :(得分:1)
TableLayout
是满足您需求的最佳选择。
<TableLayout>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_span="2"
android:text="Text" />
</TableRow>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text" />
</TableRow>
</TableLayout>
请注意第一个layout_span
中使用的TextView
属性跨越两列。
答案 3 :(得分:1)
您可以尝试添加其他TextViews
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#CD96CD"
android:text="TEXT" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:background="#CD96CD"
android:text="TEXT" />
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="#000000" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:background="#CD96CD"
android:text="TEXT" />
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="#000000" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:background="#CD96CD"
android:text="TEXT" />
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="#000000" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:background="#CD96CD"
android:text="TEXT" />
</LinearLayout>
答案 4 :(得分:0)
添加此视图;在你的文本视图之间绘制一个分隔符
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />