如何绘制视图的组合

发布于 2024-09-28 19:15:02 字数 286 浏览 1 评论 0原文

我想要一个自定义布局,其中我将在顶部有画廊,然后在其下方有一个简单的小部件,以在从画廊中选择图片时显示图片。我不知道如何编写 main.xml 来实现它,您的建议将不胜感激。

图库布局 xml 直接来自 google 教程并且正在运行。我该如何修改它才能达到上述目的?

android:layout_width="fill_parent"
安卓:layout_height =“wrap_content” >>

HT

I wanted to have a custom layout where I would have gallery on top, then below it to have a simple widget to show the picture when it is chosen from the gallery. I could not figure out how to compose that main.xml to achieve it, your advice will be greatly appreciated.

The gallery layout xml is straight from the google tutorial and is working. How do I modify it to achieve the above?

android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>

HT

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

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

发布评论

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

评论(1

怪我鬧 2024-10-05 19:15:02

好的,我已经为自己解决了这个问题,对于将来可能需要这个的其他人来说,main.xml 如下所示:

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

<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/gallery"    
    android:layout_width="fill_parent"    
    android:layout_height="wrap_content"
/>
<ImageView
    android:id="@+id/image1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/gallery"
    android:layout_alignParentRight="true"
    android:layout_marginLeft="10dip"
    /></RelativeLayout>

ok, I have figured it out for myself, for others who may need this in the future, the main.xml looks below:

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

<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/gallery"    
    android:layout_width="fill_parent"    
    android:layout_height="wrap_content"
/>
<ImageView
    android:id="@+id/image1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/gallery"
    android:layout_alignParentRight="true"
    android:layout_marginLeft="10dip"
    /></RelativeLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文