Сайт открывается как приложение для Android, но не может взаимодействовать - PullRequest
0 голосов
/ 22 сентября 2018

Итак, я попытался преобразовать сайт, над которым я работаю, в приложение для Android с помощью android studio

Приложение было успешно создано, без ошибок, открывается при нажатии, но остается статичным.Я не могу взаимодействовать с ним .. Он просто остается на главной странице, никакого взаимодействия.не удается провести пальцем вверх / вниз / влево / вправо. Неправильное расположение. Невозможно щелкнуть окно поиска, которое основной сайт адаптирует к различным размерам экрана.

Можете ли вы помочь мне диагностировать его?

activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" 
 android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">

<WebView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/webView" />

<ListView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    </ListView>




</RelativeLayout>

MainActivity.java

package tech.radhelper.radhelpertech;

  import android.app.ListActivity;
  import android.support.v7.app.AppCompatActivity;
  import android.os.Bundle;
  import android.view.Menu;
  import android.view.MenuItem;
  import android.webkit.WebSettings;
  import android.webkit.WebView;
  import android.webkit.WebViewClient;


 public class MainActivity extends ListActivity {
      private WebView myWebView;
     @Override
     protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    myWebView = (WebView) findViewById(R.id.webView);
    WebSettings webSettings = myWebView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    myWebView.loadUrl("https://radhelper.tech/");
    myWebView.setWebViewClient(new WebViewClient());
}
@Override
public void onBackPressed() {
    if(myWebView.canGoBack()) {
        myWebView.goBack();
    } else
        super.onBackPressed();

   }

}

AndroidManifest.xmml

 <?xml version="1.0" encoding="utf-8"?>
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="tech.radhelper.radhelpertech">
     <uses-permission android:name="android.permission.INTERNET"></uses- 
 permission>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    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>

 </manifest>

1 Ответ

0 голосов
/ 22 сентября 2018

Я заставил его работать, изменив ListActivity на AppCompatActivity

, а затем изменив Activity_main.xml

код, который я использую:

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:context=".MainActivity">

  <WebView
    android:id="@+id/webView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

    <ListView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/list"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"></ListView>

 </RelativeLayout>

Я обертываюсодержание вместо заполнения / совпадения родительских ..

спасибо Абхинав Гупта за помощь .. Приветствую, бай!

...