“没有适用的构造函数?在制作应用程序时出现错误

时间:2015-02-14 19:23:54

标签: java android

我的名字是易卜拉欣。我从14岁开始就一直在发展。我对电脑和电脑感兴趣。自从我来到这片伟大的土地以来,你称之为美国的控制论。我最近在我的平板电脑上开发了一个应用程序(使用Android IDE或AIDE)。最近我一直在为他们的电源按钮卡住或损坏的用户开发应用程序。它允许它们将其关闭,以便在充电时保留电量。在今天完成之后,我收到了这个错误说"找不到适用的构造函数"。我需要帮助。 这是我的MainActivity.java代码:

package com.mycompany.myapp;

import android.app.*;
import android.os.*;
import android.widget.*;
import android.view.View.*;
import android.view.*;
import android.os.PowerManager.*;
import android.content.Context.*;
import android.content.*;
import android.os.PowerManager.*;
import java.text.*;
import java.util.logging.*;
import java.lang.reflect.*;


public class MainActivity extends Activity 
{
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Button shutdown = (Button) findViewById(R.id.Shut_Down);

        shutdown.setOnClickListener(new OnClickListener() {
             PowerManager pm =new PowerManager();

                @Override
                public void onClick(View p1)
                {
                    // will shut off android


                }



        });




                }
                }

这是我的main.xml页面:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">

    <Button
        android:text="shutdown"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/Shut_Down"/>
    <Button
    android:text="reboot"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:id="@+id/Reboot"/>

</LinearLayout>

这是我的AndroidManifest.xml代码:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mycompany.myapp" >

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

2 个答案:

答案 0 :(得分:2)

使用

PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);

获取对PowerManager的引用。您无法使用new自行实例化。

答案 1 :(得分:1)

  

我的名字是易卜拉欣。我从14岁开始就一直在发展。我对电脑和电脑感兴趣。自从我来到这片叫做美国的大地以来,控制论就一直存在。

很高兴见到你,交配XD

使用

PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);

正如另一个人所说,但我不认为你可以用该类关闭设备,只重新启动它,你还需要在清单中设置权限