-1

根据我在其他指南上看到的内容,您在清单括号之间添加了一行 XML 代码,但我没有任何清单括号开头。

所以每个人都说在清单之间放置权限,如下所示:

<manifest xlmns:android...>
 ...
 <uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>

但我没有任何时期,这是我的 main_activity.XML:

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



    <LinearLayout
        android:id="@+id/group"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <Button
            android:id="@+id/add"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Add New" 
            android:onClick="onClick"/>

        <Button
            android:id="@+id/delete"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Delete First" 
            android:onClick="onClick"/>

    </LinearLayout>

    <ListView
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="114dp" >

    </ListView>

    <WebView
        android:id="@+id/webView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout> 

我如何授予使用互联网的权限?

4

4 回答 4

1

您必须将其添加到您的 AndroidManifest.xml 文件中,而不是添加到 layout/*.xml 通常,您可以在项目根目录中找到它。

于 2013-09-03T11:31:39.523 回答
0

AndroidManifest.xml file will always be in android project. Check properly.

于 2013-09-03T11:32:43.360 回答
0

Manifest is not inside any folders specifically. It's only inside your App's root folder. See:

enter image description here

于 2013-09-03T11:33:08.737 回答
0

This (main_activity.XML) is your layout XML not the AndroidManifest.xml Find your AndroidManifest.xml in root folder.

于 2013-09-03T11:33:10.000 回答