gpt4 book ai didi

java - Android - 全屏透明按钮

转载 作者:太空宇宙 更新时间:2023-11-03 12:11:54 25 4
gpt4 key购买 nike

是否可以制作一个透明的全屏按钮,以便无论用户在何处单击该按钮都会被激活?

下面是一些基本的 java,显示一个按钮,按下时启动一个新的 Intent 。我还添加了 main.xml 布局,但我不确定如何更新它以使按钮填满屏幕但透明。

package com.MeetingManager;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;

public class MeetingManager extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.main);



layout.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent e) {
Intent myIntent = new Intent(MeetingManager.this,CreateMeeting.class);
startActivityForResult(myIntent, 0);
}
});

}



}

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/meetingbg"
>
<TableRow android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/tableRow5">
<Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</TableRow>

</LinearLayout>

最佳答案

如果您的目标是通过点击屏幕来监听用户交互,我建议您在 LinearLayout 中添加一个触摸监听器。这消除了对 Button 的需要。

例如

LinearLayout layout = (LinearLayout) findViewById(R.id.your_layout);

layout.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
return false;
}
});
});

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/your_layout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/meetingbg"
>
<TableRow android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/tableRow5">
<Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</TableRow>

</LinearLayout>

您可能必须包含以下导入:

import android.view.View.OnTouchListener;
import android.view.MotionEvent;

关于java - Android - 全屏透明按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7697419/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com