Skip to content

Instantly share code, notes, and snippets.

View act262's full-sized avatar
🏠
Working from home

act262 act262

🏠
Working from home
  • Shenzhen, Guangdong, China
View GitHub Profile
@act262
act262 / tabsample.xml
Created December 5, 2015 11:34 — forked from jerolimov/tabsample.xml
Android TabHost TabWidget TabContent widget sample
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
@act262
act262 / gradleAndroidBase.gradle
Last active August 29, 2015 14:12 — forked from youxiachai/gradleAndroidBase.gradle
Android gradle 配置文件
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.4'
}
}
apply plugin: 'android'