我在 android 的布局文件夹中有一个 xml 布局文件。我想通过代码引用该文件以添加 webview。
我怎样才能做到这一点?
你必须给你的布局一个 id:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
id="@+id/layout" >
</LinearLayout>
然后你可以得到它:
LinearLayout layout = (LinearLayout) findViewById(R.id.layout);
现在您可以将您的 WebView 添加到此布局中。