设置tablelayout

时间:2017-10-03 07:16:57

标签: java android android-tablelayout

我正在尝试构建一个列表应用程序,我需要将按钮和文本对齐在同一行,但因为我对android studio和Java非常新,我遇到了麻烦。我发现的任何指南都已过时 我的代码在下面

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="1"
    android:strechColumns="1">

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:baselineAligned="false">

        <TextView

            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:text="Job 1"
            />

    </TableRow>

    <ToggleButton
    android:id="@+id/button1"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:onClick=""
    android:text="test text"
    />
</TableLayout>

任何帮助将不胜感激

2 个答案:

答案 0 :(得分:0)

在标记内部尝试以下代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="horizontal"
  >
        <TextView
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:text="Job 1"
        />
        <ToggleButton
          android:id="@+id/button1"
          android:layout_alignParentBottom="true"
          android:layout_alignParentRight="true"
          android:onClick=""
          android:text="test text"
        />
     />

答案 1 :(得分:0)

ToggleButton 放在TableRow中会将您的商品放在同一行。

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:strechColumns="1">

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:baselineAligned="false">

        <TextView

            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:text="Job 1"/>

        <ToggleButton
            android:id="@+id/button1"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:text="test text"/>

    </TableRow>

</TableLayout>

除此之外如果你只需要在行中使用两个元素就可以使用 List / RecyclerView Adapter 实现相同的功能 使用 List / RecyclerView 是TableView的简单方法。在您的适配器中,使用以下XML代码进行项目迭代

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:orientation="vertical" android:layout_width="match_parent"
      android:layout_height="match_parent">

    <TextView    
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toLeftOf="@+id/toggleButton"
        android:layout_toStartOf="@+id/toggleButton"
        android:layout_alignParentleft="true"
        android:layout_alignParentStart="true"
        android:text="test "/>

    <ToggleButton
        android:id="@+id/toggleButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"/>
  </RelativeLayout>