我刚刚开始做一些Android编程,因为我下载了手机的AIDE。我正在尝试创建一个需要连接到网站的应用程序,但每次我运行应用程序并尝试任何与网络相关的操作时,它都会崩溃。
我已在清单文件中设置了INTERNET和ACCESS_NETWORK_STATE的权限。
我会显示错误的日志,但我不知道如何使用AIDE应用程序或在Android设备上执行此操作,因为我无法在计算机上访问正确的IDE。
帮助将不胜感激
public class MainActivity extends Activity{
private TextView text;
@Override
public void onCreate ( Bundle savedInstanceState ){
super onCreate( savedInstanceState );
setContextView( R.layout.main );
textView = ( TextView )findViewById( R.id.myText );
}
public void checkConn(){
ConnectivityManager connMgr = ( ConnectivityManager ) getSystemService ( Context.CONNECTIVITY_SERVICE);
NetworkInfo networkInfo = connMgr getActiveNetworkInfo();
if ( networkInfo != null && networkInfo.idconnected() ){
textView.setText( "conection" );
}else{
textView.setText( "no connection" );
}
编辑:我修复了检查连接问题,但现在我添加了连接到我想要的网站的方法,现在我的应用程序再次崩溃。
private void makeConnection(){
try{
URL url = new URL("website");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.connect();
}catch (MalformedURLException e) {
textView.setText( "no connection" );
}catch ( IOExcpetion e ){
textView.setText( "no connection" );
}
}
答案 0 :(得分:1)
试试这个:
MainActivity.java
import android.app.Activity;
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import android.widget.TextView;
public class MainActivity extends Activity {
private TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main );
textView = ( TextView )findViewById( R.id.myText );
checkConn();
}
public void checkConn(){
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = cm.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnectedOrConnecting()) {
textView.setText( "conection" );
}else{
textView.setText( "no connection" );
}
}
}
main.xml中:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.SPTechnos.ambassador.Home"
tools:ignore="MergeRootFrame" >
<TextView
android:id="@+id/myText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</FrameLayout>
不要忘记在应用程序清单中添加此权限:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
答案 1 :(得分:0)
你的定义是这样的
private TextView text
你正在使用
textView = ( TextView )findViewById( R.id.myText );
然后绝对崩溃了。 像这样改变
private TextView textView;
并尝试运行并检查......
希望它有所帮助。