活动顶部的关闭按钮

时间:2014-02-03 14:13:23

标签: android button layout

<?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
    android:orientation="vertical"
    android:layout_margin="15dp"
    android:padding="2dp">

<WebView 
    android:id="@+id/webview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:onClick="closeActivity"> 
</WebView>
<Button 
    android:layout_alignParentRight="true"
    android:text="@string/x"
    android:textColor="#FFF"
    android:background="@drawable/close"
    android:gravity="center_vertical|center_horizontal"
    android:layout_margin="5dp" 
    android:layout_height="25dp"
    android:layout_width="25dp" 
    android:textSize="12sp" 
    android:textStyle="bold"
    android:onClick="closeActivity"
     /> 

我想要那种类型的关闭按钮,任何人都可以帮助我在webView的布局之上。

Click Here To see the Pic

2 个答案:

答案 0 :(得分:0)

很容易

  1. 创建自定义对话框。
  2. 为该对话框创建自定义布局。
  3. 使用相对布局设计自定义布局。
  4. 创建对话框的网址:http://www.mkyong.com/android/android-custom-dialog-example/

答案 1 :(得分:0)

您可以通过删除活动顶部的ActionBar来获得所需内容。

将此添加到您的活动(使用您在此处发布的布局)中的AndroidMenifast.xml

<activity
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
....
>

此代码取自Here

告诉我它是否有帮助..