从Android应用程序访问wordpress博客

时间:2015-01-24 12:07:18

标签: android mysql wordpress browser webview

我想在Android应用程序中显示我的Wordpress博客。

我尝试过一些东西,但浏览器一直打开以显示页面。

我从Android API了解了WebView类,但在网站上看到它只能处理静态页面。

是否可以在Android应用程序中查看完整的Wordpress网站?如果是这样,你怎么做?

提前感谢您的帮助!

谢谢,

1 个答案:

答案 0 :(得分:0)

Mainactivity.java

public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        WebView webView=(WebView) findViewById(R.id.webView1);
        webView.loadUrl("http://www.awwwards.com/websites/wordpress/");
    }
}

activity_main.xml中

<LinearLayout 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"
    android:orientation="vertical" >

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

在清单文件中提供互联网权限

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