我试图关注Codepath(https://guides.codepath.com)中的Todo
应用教程。
来源:https://guides.codepath.com/android/Basic-Todo-App-Tutorial
据我所知,我已经按照教程进行了操作,但我遇到了以下问题。
Cannot resolve symbol `FileUtils`
MainActivity.Java
package com.codepath.simpletodo;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.ListView;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity {
private ArrayList<String> items;
private ArrayAdapter<String> itemsAdapter;
private ListView lvItems;
private void readItems() {
File filesDir = getFilesDir();
File todoFile = new File(filesDir, "todo.txt");
try {
items = new ArrayList<String>(FileUtils.readLines(todoFile));
} catch (IOException e) {
items = new ArrayList<String>();
}
}
private void writeItems() {
File filesDir = getFilesDir();
File todoFile = new File(filesDir, "todo.txt");
try {
FileUtils.writeLines(todoFile, items);
} catch (IOException e) {
e.printStackTrace();
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
lvItems = (ListView) findViewById(R.id.lvItems);
items = new ArrayList<String>();
itemsAdapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, items);
lvItems.setAdapter(itemsAdapter);
items.add("Default item");
items.add("Another default item");
items.add("The third default item");
// setup remove listener method call
setupListViewListener();
}
// Attaches a long click listener to the listview
private void setupListViewListener() {
lvItems.setOnItemLongClickListener(
new AdapterView.OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView<?> adapter,
View item, int pos, long id) {
// Remove item within array at position
items.remove(pos);
// Refresh the adapter
itemsAdapter.notifyDataSetChanged();
// Return true consumes the long click event (marks it handled)
return true;
}
});
}
public void onAddItem(View v) {
EditText etNewItem = (EditText) findViewById(R.id.etNewItem);
String itemText = etNewItem.getText().toString();
itemsAdapter.add(itemText);
etNewItem.setText("");
}
}
activity_mail.xml
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/lvItems"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_above="@+id/btnAddItem" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/etNewItem"
android:layout_alignTop="@+id/btnAddItem"
android:hint="Enter a new item"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@+id/btnAddItem"
android:layout_toStartOf="@+id/btnAddItem"
android:layout_alignParentBottom="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add Item"
android:id="@+id/btnAddItem"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:onClick="onAddItem"
/>
我对Android非常陌生,只是为了让事情发挥作用而感到高兴,因为我还没有足够的背景来调试。
非常感谢任何指导。
应用/的build.gradle
原始格式
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.codepath.simpletodo"
minSdkVersion 14
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
}
我尝试过包含'org.apache.commons:commons-io:1.3.2'
的各种组合。
'com.android.support:appcompat-v7:24.0.0'
'org.apache.commons:commons-io:1.3.2'
compile 'com.android.support:appcompat-v7:24.0.0', 'org.apache.commons:commons-io:1.3.2'
。compile 'com.android.support:appcompat-v7:24.0.0' compile 'org.apache.commons:commons-io:1.3.2'
。但是在尝试Gradle project sync
时,会出现以下消息失败。
Error:(24, 13) Failed to resolve: compile org.apache.commons:commons-io:1.3.2
最终的工作版本需要看起来像这样。
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
compile group: 'org.apache.commons', name: 'commons-io', version: '1.3.2'
}
答案 0 :(得分:15)
implementation 'org.apache.commons:commons-io:1.3.2'
包含FileUtils类。您应该将其添加到依赖项中。
答案 1 :(得分:5)
我认为,在你的build.gradle中缺少以下行
dependencies {
compile 'org.apache.commons:commons-io:1.3.2'
}
将以上行添加到build.gradle
答案 2 :(得分:2)
对于较新的等级(3+)和dex文件冲突,这对我来说效果更好
dependecies { 实施'commons-io:commons-io:2.4' }
答案 3 :(得分:0)
版本:Android Studio 3.4.1
您可以单击“项目结构”并添加依赖项
然后您将看到“ build.gradle”文件包含一个实现行。
或者您只需自己添加一个实施行,
在单击“与Gradle文件同步项目”之后,也可以。
最后,您应该
import org.apache.commons.io.FileUtils;
[ [