วันอาทิตย์ที่ 23 กรกฎาคม พ.ศ. 2560

How to remove title bar in android?

How to remove title bar in android?


App->src->main->res->values->styles.xml

Changes Style.xml to the following:

parent="Theme.AppCompat.Light.NoActionBar"

  

How to preview contents of TabWidget in graphical designer of Android studio

How to view other tab host in Android studio designer??

The way to preview is using component tree in a tab design of the xml file.
  1. Expand tabhost
  2. Select the tab you wish to view/edit
  3. Drag that tab to becomes the first tab element under tab content
  4. The view will update to show the first tab element.
  5. After finish editing, re-order the tabs in the way you wanted


วันเสาร์ที่ 22 กรกฎาคม พ.ศ. 2560

How to set web view for your Android app.

WebView not loading URL!!

How to set web view for your Android app.

Added the internet permission in manifest file.
The internet permission is the following line.

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

Example: