主要的.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" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true" />
</RelativeLayout>
主要活动
public class MainActivity extends Activity {
WebView web1;
String st = " This is First Application";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
web1.loadData(st, "text/html", "UTF-8");
}
}
我想使用样式设置夜间模式你能告诉我如何实现它文本应该是白色的,网络视图的背景应该是黑色的