如何在Android中创建这种类型的面板?

时间:2013-08-13 10:04:40

标签: android panels

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

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

哪种面板是什么?我如何创建它们?

提前致谢

3 个答案:

答案 0 :(得分: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>

或者您可以创建自定义listView

答案 1 :(得分:0)

尝试设置不同的主题。并选择应用程序所需的那个。

答案 2 :(得分:0)

这只是一个自定义对话框。你可以通过这个link创建这种对话框,你需要一个优秀的图形设计师来进行这种设计。