1

我想编写这个对话框布局: http: //fooh.pl/pokaz/348687655.png

绿色容器在橙色容器中。对话框顶部是 TextView。右上角是一个按钮。

我知道布局的类型,但我失败了。

谁能帮我?请。

4

2 回答 2

0

干得好:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@drawable/rounded_orange">

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_margin="8dp"
    android:text="Text"/>

  <RelativeLayout 
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="32dp"
    android:background="@drawable/rounded_green">
  </RelativeLayout>

</RelativeLayout>

可绘制对象(此处仅显示绿色)的布局如下:

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
  <solid android:color="#0F0"/>
  <corners android:radius="16dp"/>
</shape>

如果您需要帮助将自定义 layout.xml 文件应用到对话框,请阅读Dialog官方文档中的“创建自定义对话框” 。

于 2013-04-01T20:45:29.643 回答
0

这是文档的链接,其中包含很好的示例或如何基于布局创建对话框片段。

这是一个很好SO 答案,它显示了如何扩展布局以在对话框片段中使用。

于 2013-04-01T20:46:05.570 回答