小编and*_*oid的帖子

使用Android从URL获取JSON数据?

我试图通过使用用户名和密码解析登录URL来获取JSON数据.我试过使用下面的代码,但我无法得到任何答复.请帮我.

我正在使用HTTP Process和API level 23.

我需要解析我的URL并获得以下响应

{
    "response":{
                "Team":"A",
                "Name":"Sonu",
                "Class":"First",
              },
                "Result":"Good",
}
Run Code Online (Sandbox Code Playgroud)

在我的代码下面:

public class LoginActivity extends Activity {

    JSONParser jsonparser = new JSONParser();
    TextView tv;
    String ab;
    JSONObject jobj = null;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.login);

        new retrievedata().execute();

    }

    class retrievedata extends AsyncTask<String, String, String>{

        @Override
        protected String doInBackground(String... arg0) {
            // TODO Auto-generated method stub
            jobj = jsonparser.makeHttpRequest("http://myurlhere.com");

            // check your log for json response
            Log.d("Login attempt", jobj.toString());

            try {
                ab = jobj.getString("title"); …
Run Code Online (Sandbox Code Playgroud)

android json android-6.0-marshmallow

12
推荐指数
3
解决办法
10万
查看次数

如何使用 iOS 在 Storyboard 上创建 ImageView 中心?

我正在尝试在 Xcode 7 和 iOS 9 中使用 iOS 故事板创建通用应用程序。在故事板概念中,我可以看到很多方法(自动布局、自动约束、自适应 UI 等)。我对这些设计方法感到困惑。请给我一个在所有 iPhone 和 iPad 上图像视图显示在中心的解决方案。

storyboard ios

5
推荐指数
1
解决办法
2万
查看次数

如何解决 Android 错误类型 3?

在我在我的项目中使用的清单格式下方,但是每当我尝试运行我的模拟器时,我都会遇到下面提到的错误。请给我一个解决错误的确切解决方案。

工具信息

Android studio 
Nexus S API 22 (android 5.1.1)
Run Code Online (Sandbox Code Playgroud)

我的清单文件格式

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.info.androidapp" >

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="app"
        android:supportsRtl="true"
        android:theme="@style/AppTheme" >

        <!-- Splash activity -->
        <activity
            android:name=".SplashActivity"
            android:label="app"
            android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <!-- Login activity -->
        <activity
            android:name=".LoginActivity"
            android:label="app"
            android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen">
        </activity>

        <!-- List activity -->
        <activity
            android:name=".listActivity"
            android:label="app"
            android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen">
        </activity>
    </application>

</manifest>
Run Code Online (Sandbox Code Playgroud)

我的错误:

Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.info.androidapp/.SplashActivity }
Error type 3
Error: Activity …
Run Code Online (Sandbox Code Playgroud)

android android-manifest

4
推荐指数
4
解决办法
8899
查看次数