@C:red(左サイドのツリーを Android に戻して、AndroidManifest を開きます)
https://lh3.googleusercontent.com/-ojewVZgkfpM/VWCPsQBxCRI/AAAAAAAAacA/grCnbNZqFRc/s400/_img.png
<u と入力すると候補が表示されます( CTRL + SPACE でも表示されます )
https://lh3.googleusercontent.com/-t4f_GaUtt2c/VWCP6z0uYnI/AAAAAAAAacI/-L6vNko1LW0/s400/_img.png
uses-permission を選択すると、次は属性値の候補( android.permission.INTERNET を選択します )
https://lh3.googleusercontent.com/-qKDJKQrEg-0/VWCQJZd3JJI/AAAAAAAAacQ/6WPjH8EBUSg/s400/_img.png
終了タグ無しで閉じたい( つまり入力の完了 )は、[[CTRL + SHIFT + ENTER]] です。
https://lh3.googleusercontent.com/-opyOvI7rkDI/VWCQXC2CfMI/AAAAAAAAacY/4L9q4KYySl8/s400/_img.png
[[入力が完了しました]]
▼ AndroidManifest
@DIV
<?xml version="1.0" encoding="utf-8"?>
<manifest package="lightbox.may.toolstest"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
@END |