混乱: 質問に反対票を投じた人は、コメントを追加してもらえますか? なぜ???? 悪い言葉を言いたいのですが、禁止されたくないだけです。
私はアプリを持っていますが、ユーザーが何かを追加してアプリ内で使用できるように、sdCard にフォルダーを作成したいと考えています。次のコードを使用してフォルダーを作成します。
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//External storage
boolean mExternalStorageAvailable = false;
boolean mExternalStorageWriteable = false;
String state = Environment.getExternalStorageState();
if (Environment.MEDIA_MOUNTED.equals(state)) {
// We can read and write the media
mExternalStorageAvailable = mExternalStorageWriteable = true;
Log.v("Storage","ablo to read and write");
//create Beatss folder
File direct = new File(android.os.Environment.getExternalStorageDirectory().getPath() + "/Beatss");
Log.v("Storage",android.os.Environment.getExternalStorageDirectory().getPath() + "/Beatss");
boolean success = true;
if (!direct.exists()) {
success = direct.mkdirs();
}
if (success) {
// Do something on success
Log.v("Storage","Folder has been created");
} else {
// Do something else on failure
}
} else if (Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
// We can only read the media
mExternalStorageAvailable = true;
mExternalStorageWriteable = false;
Log.v("Storage","ablo to read only");
} else {
mExternalStorageAvailable = mExternalStorageWriteable = false;
Log.v("Storage","no access");
}
DDMS でフォルダーが作成されたことを確認できますが、WindowsExplorer を使用すると、フォルダーではなくファイルが表示されます。では、フォルダを作成する方法は?
UPD1: したがって、このフォルダー内に何かを作成しても、Windows エクスプローラー内にファイルとして保持されますが、DDMS 内にはフォルダーがあり、その中に別のフォルダーがあることがわかります。それで、ここで何が問題なのですか??
UPD2:したがって、logcatdirect
の行を分割して、実際のパスがあるかどうかを確認します。
01-24 21:14:04.368: V/Storage(12116): /mnt/sdcard/Beatss/
だからある..
UPD3: これまでに 264 行あるすべてのコードを表示することはできません。このフォルダの作成はすべて、mainActivity の onCreate で行われます。manifestFile は次のようになります。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.test
android:versionCode="1"
android:versionName="1.0"
android:installLocation="auto" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="16" />
<supports-screens
android:smallScreens= "true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"
/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:screenOrientation="portrait"
>
<activity
android:name=".Main"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:clearTaskOnLaunch="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
<activity android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
</activity>
<activity android:name=".SupportScreen"
android:label="@string/app_name"
android:screenOrientation="portrait">
</activity>
<activity android:name="com.tapjoy.TJCOffersWebView" android:configChanges="keyboardHidden|orientation" />
<activity android:name="com.tapjoy.TapjoyFullScreenAdWebView" android:configChanges="keyboardHidden|orientation" />
<activity android:name="com.tapjoy.TapjoyDailyRewardAdWebView" android:configChanges="keyboardHidden|orientation" />
<activity android:name="com.tapjoy.TapjoyVideoView" android:configChanges="keyboardHidden|orientation" />
</application>
</manifest>
更新コード上部:
Logcat は次のように述べています。
01-24 21:19:21.068: V/Storage(14088): /mnt/sdcard/Beatss/
01-24 21:19:21.138: V/Storage(14088): Folder has been created