5

Android 似乎没有提供如此有用的小部件。但是,我的屏幕设计需要这样的视图:

设计实例

此外,交互设计要求根据其他数据显示和隐藏这些框。

当然,我可以从我的 XML 布局中的单独元素(例如,从形状和它上面的文本视图)构造这样的框,但是管理它们的可见性变成了地狱......

所以很明显,这里需要的是一个容器,就像一个相对布局。这样的容器可以在 XML 布局中有子容器,并且可以通过简单的 setVisibility(...) 调用来显示和隐藏。

有人可以给我一个提示如何做到这一点,好吗?

4

2 回答 2

2

我不认为有一个,但我一起破解了一些手册......我知道的不一样,但我想我会分享“@drawable/divider”是一个2像素的方形灰色图像。在控件周围创建一个盒子的幻觉。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <ScrollView android:id="@+id/ScrollView01" android:layout_height="fill_parent" android:layout_width="fill_parent">
        <LinearLayout
          xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical" android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/linLayout02">
            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" >
                <ImageView
                    xmlns:android="http://schemas.android.com/apk/res/android"
                    android:background="@drawable/divider"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="fitXY"/>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/tableRow1"  android:visibility="gone">
                <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/image_folder" android:minWidth="100px" android:visibility="gone"></TextView>
                <EditText android:text="..." android:layout_height="wrap_content" android:layout_weight="1" android:layout_width="fill_parent" android:id="@+id/txtImageFolder" android:enabled="false" android:visibility="gone"></EditText>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/tableRow2">
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <CheckBox android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/cbDisplayText" android:text="@string/text_below_images"></CheckBox>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>
            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/tableRow3" >
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <TextView android:id="@+id/tvLocale" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/locale" android:minWidth="100px"></TextView>
                    <Spinner android:id="@+id/cboLocales" android:layout_width="wrap_content" android:layout_height="wrap_content" android:minWidth="100px"></Spinner>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/tableRow3_1" >
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <TextView android:id="@+id/tvPitch" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/pitch" android:minWidth="100px"></TextView>
                    <SeekBar android:minWidth="100px"  android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/barPitch" android:max="200" ></SeekBar>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>
            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/tableRow3_2" >
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <TextView android:id="@+id/tvLocale" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/speed" android:minWidth="100px"></TextView>
                    <SeekBar android:minWidth="100px" android:layout_width="wrap_content" android:id="@+id/barSpeed" android:layout_height="wrap_content" android:max="200"></SeekBar>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:id="@+id/tableRow4" android:layout_height="wrap_content" >
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <Button android:minWidth="100px" android:layout_width="wrap_content" android:layout_height="wrap_content"  android:id="@+id/btnSave" android:text="@string/save"></Button>
                    <Button android:minWidth="100px" android:layout_width="wrap_content" android:layout_height="wrap_content"  android:id="@+id/btnCancel" android:text="@string/cancel"></Button>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" >
                <ImageView
                    xmlns:android="http://schemas.android.com/apk/res/android"
                    android:background="@drawable/divider"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="fitXY"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:paddingBottom="2dp"
                    android:paddingTop="2dp" />
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="2px">
                <ImageView
                    xmlns:android="http://schemas.android.com/apk/res/android"
                    android:background="@drawable/divider"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="fitXY"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:paddingBottom="2dp"
                    android:paddingTop="2dp" />
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" >
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <TextView android:text="@string/download_msg" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" >
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <TextView android:text="Step 1: Download and Install eSpeak:" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
                    <Button android:minWidth="80px" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/btneSpeak" android:text="@string/eSpeak"></Button>
                    <ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/barESpeak" android:visibility="gone"></ProgressBar>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" >
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <TextView android:text="Step 2: Download and Install Languages:" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
                    <Button android:minWidth="80px" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/btnLanguages" android:text="@string/languages"></Button>
                    <ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/barLanguages" android:visibility="gone"></ProgressBar>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" >
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <TextView android:text="Step 3: Reboot the device:" android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
                    <Button android:minWidth="80px" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/btnReboot" android:text="Reboot"></Button>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" >
                <LinearLayout
                  xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="left">
                    <ImageView
                        xmlns:android="http://schemas.android.com/apk/res/android"
                        android:background="@drawable/divider"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:scaleType="fitXY"/>
                    <TextView android:text="Note: If Text to speech still fails repeat Step 2 and reboot again." android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
                    <LinearLayout
                      xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_height="fill_parent" android:layout_width="fill_parent" android:gravity="right">
                        <ImageView
                            xmlns:android="http://schemas.android.com/apk/res/android"
                            android:background="@drawable/divider"
                            android:layout_width="wrap_content"
                            android:layout_height="fill_parent"

                            android:scaleType="fitXY"/>
                    </LinearLayout>
                </LinearLayout>
            </TableRow>

            <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" >
                <ImageView
                    xmlns:android="http://schemas.android.com/apk/res/android"
                    android:background="@drawable/divider"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="fitXY"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:paddingBottom="2dp"
                    android:paddingTop="2dp" />
            </TableRow>

        </LinearLayout>

    </ScrollView>

</LinearLayout>
于 2011-06-30T19:59:28.103 回答
0

将此保留在您的可绘制文件名“selector_fieldset_background.xml”中

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
    <solid android:color="#FFFFFF" />
    <stroke
      android:width="1dip"
      android:color="#4fa5d5" />
</shape>

这在你的布局中:

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

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginTop="13dp"
    android:background="@drawable/selector_fieldset_background"
    android:orientation="vertical" >
  </LinearLayout>

  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:background="@color/white"
    android:paddingLeft="20dp"
    android:paddingRight="20dp"
    android:text="Order Information"
    android:textAppearance="?android:attr/textAppearanceLarge"/>
</RelativeLayout>

这将创建一个组框组件,如您的图像所示。

于 2014-08-04T11:37:00.190 回答