-2

我见过这种类型的面板(底部有阴影边框的白色面板),我想在我的应用程序中使用它们。

https://lh6.ggpht.com/i_RUUvI7G2UM1eBn5hAcJQvqK_K1tHMiw7ynAc4hwwUD1_J1g03MkMBaFu0n5jA2YA=h900-rw

什么样的面板是我如何创建它们?

提前致谢

4

3 回答 3

2

/drawable/panel_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- Bottom 3dp Shadow -->
    <item>
        <shape android:shape="rectangle">

        <solid android:color="#C7C6C5" />
        <corners android:radius="4dp" />

    </shape>
    </item>

    <!-- White Top color -->
    <item android:bottom="4px">

        <shape android:shape="rectangle">

        <solid android:color="@color/white" />
        <corners android:radius="4dp" />


        </shape>

    </item>

</layer-list>

/layout/test.xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ScrollView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:id="@+id/LinearLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <LinearLayout
            android:id="@+id/LinearLayout2"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginTop="5dp"
            android:background="@drawable/panel_bg"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/tv1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="8dp"
                android:layout_marginRight="8dp"
                android:layout_marginTop="8dp"
                android:text="Hello world"
                android:textColor="#cccccc"
                android:textSize="14sp" />

            <TextView
                android:id="@+id/tv2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="1234567890"
                android:textColor="#cccccc"
                android:textSize="14sp" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/LinearLayout3"
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginTop="10dp"
            android:background="@drawable/panel_bg"
            android:orientation="vertical" >

           <TextView
                android:id="@+id/tv3"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="8dp"
                android:layout_marginRight="8dp"
                android:layout_marginTop="4dp"
                android:text="Hellllooo"
                android:textSize="16sp" />

            <TextView
                android:id="@+id/tv4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="ashkdhakhd"
                android:textColor="#38B6AB"
                android:textSize="32sp" />
        </LinearLayout>
    </LinearLayout>

</ScrollView>

或者您可以创建自定义列表视图

于 2013-08-13T11:54:56.400 回答
0

这不过是一个自定义对话框。你可以通过这个链接制作这种对话框,而且你需要一个好的平面设计师来制作这种设计。

于 2013-08-13T10:18:55.283 回答
0

尝试设置不同的主题。并选择您需要的应​​用程序。

于 2013-08-13T10:09:43.767 回答