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



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

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

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

提前感谢

<?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>

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

尝试设置不同的主题。然后选择应用程序所需的。

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

相关内容

  • 没有找到相关文章

最新更新