我想有一个活动,包括一个关闭按钮,即右上角关闭活动的'x'。任何关于此的例子都会非常有用。
答案 0 :(得分:14)
在清单中使用透明主题制作Activity
,如下所示:
<activity android:name=".MyDialogActivity" android:theme="@style/Theme.Transparent" />
然后定义这样的布局:
<?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">
<RelativeLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_margin="15dp" android:padding="2dp">
<!-- Contents will go here..-->
</RelativeLayout>
<Button android:layout_alignParentRight="true" android:text="X"
android:textColor="#FFF" android:background="@drawable/round_button_background"
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="cancelActivity" />
</RelativeLayout>
并在drawable中定义关闭Button
的背景,如下所示:
round_button_background.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#9F2200" />
<stroke android:width="2dp" android:color="#FFF" />
</shape>
答案 1 :(得分:2)
使用juzt在右上角有一个类似x的图像。按x图像即可完成活动。
XML:
<ImageView
android:id="@+id/close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:align_parentRight="true"
android:src="@drawable/closeimage"
/>
在Java代码中:
ImageView view=(ImageView)findViewById(R.id.close);
view.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent intent=new Intent(currentclass.this,statingclass.class);
startActivity(intent);// here u can start another activity or just call finish method to close the activity.
finish();
}
});
答案 2 :(得分:1)
也许是&#34; Up&#34;按钮是你真正需要的而不是关闭按钮。从官方Android文档:&#34;您的应用程序应该让用户可以轻松找到返回应用程序主屏幕的方式。一种简单的方法是在应用栏上为除主要活动之外的所有活动提供“向上”按钮。 &#34;
此处描述了详细信息:https://developer.android.com/training/appbar/up-action.html