如何创建这样的界面?

发布于 2025-01-07 06:35:50 字数 301 浏览 0 评论 0原文

我正在考虑为我的应用程序设计一个界面,所以我应用了 GridView 来拥有类似的仪表板,但我对结果不满意,所以我浏览了一些应用程序,发现这个应用程序有一个非常好的界面: http://images.frandroid.com/wp-content/uploads /2012/02/patiner.jpg 我想知道这是否基于 GridView 或简单的按钮图像,或者还有其他提示吗? 非常感谢。

I'm thinking about an interface for my application, so i applied a GridView to have a dashboard like, BUT i'm not satisfied of the result, so i browsed some apps and found that this one have a very nice interface:
http://images.frandroid.com/wp-content/uploads/2012/02/patiner.jpg
I would like to know if this is based on a GridView or simple button images or is there any other tips?
Thank you very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北方。的韩爷 2025-01-14 06:35:50

这应该会给你带来你想要的东西。但我使用的是常规按钮,您可能需要图像按钮。我只是碰巧打开了这段代码,所以我剪切并粘贴以使其更加“示例友好”,它可能并不完美。

<?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"
    android:orientation="vertical">
            <LinearLayout
                android:id="@+id/LinearLayout01"
                android:layout_width="match_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1" >

                <Button
                    android:id="@+id/btn1"
                    android:layout_weight="1"
                    android:text="1"
                    android:layout_width="0dp"/>

                <Button
                    android:id="@+id/btn2"
                    android:layout_width="0dp"
                    android:layout_weight="1"
                    android:text="2" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/LinearLayout02"
                android:layout_width="match_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1" >

                <Button
                    android:id="@+id/btn3"
                    android:layout_weight="1"
                    android:text="1"
                    android:layout_width="0dp"/>

                <Button
                    android:id="@+id/btn4"
                    android:layout_width="0dp"
                    android:layout_weight="1"
                    android:text="2" />
            </LinearLayout>
</LinearLayout>

This should get you something like what you want. But I used regular buttons, you'll probably want image buttons. I just happened to have this code opened so i cut and pasted to make it more "example friendly" it might not be perfect.

<?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"
    android:orientation="vertical">
            <LinearLayout
                android:id="@+id/LinearLayout01"
                android:layout_width="match_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1" >

                <Button
                    android:id="@+id/btn1"
                    android:layout_weight="1"
                    android:text="1"
                    android:layout_width="0dp"/>

                <Button
                    android:id="@+id/btn2"
                    android:layout_width="0dp"
                    android:layout_weight="1"
                    android:text="2" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/LinearLayout02"
                android:layout_width="match_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1" >

                <Button
                    android:id="@+id/btn3"
                    android:layout_weight="1"
                    android:text="1"
                    android:layout_width="0dp"/>

                <Button
                    android:id="@+id/btn4"
                    android:layout_width="0dp"
                    android:layout_weight="1"
                    android:text="2" />
            </LinearLayout>
</LinearLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文