tabhost选项卡,做微信以及微博UI界面必学

Android UI-实现切换标签(tabhost与FrameLayout)


  此篇主要是介绍tabhost的简单使用,比较实用,也比较容易学,本人在上传之前已经删除了大部分无用的代码,希望同样的学习者能更有效率并且有效地学习,觉得有需要的朋友可以直接拉到尾部下载源码。(刚刚开始写博客,不太知道如何阐述,见谅)

先展示一下效果图:
 tabhost选项卡,做微信以及微博UI界面必学_第1张图片  

然后直接代码吧:

MainActivity.java

package com.example.tabhost;

import android.app.Activity;
import android.os.Bundle;
import android.support.annotation.RequiresPermission;
import android.view.Menu;
import android.view.MenuItem;
import android.view.Window;
import android.widget.TabHost;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		requestWindowFeature(Window.FEATURE_NO_TITLE);
		setContentView(R.layout.activity_main);
		settabhost();
	}

	private void settabhost() {
		// TODO Auto-generated method stub
		TabHost tabhost = (TabHost) findViewById(android.R.id.tabhost);
		tabhost.setup();
		tabhost.addTab(tabhost
				.newTabSpec("tab1")
				.setIndicator(null, getResources().getDrawable(R.drawable.tab1))
				.setContent(R.id.setting_password));
		tabhost.addTab(tabhost
				.newTabSpec("tab2")
				.setIndicator(null, getResources().getDrawable(R.drawable.tab2))
				.setContent(R.id.setting_background));
		tabhost.addTab(tabhost
				.newTabSpec("tab3")
				.setIndicator(null, getResources().getDrawable(R.drawable.tab3))
				.setContent(R.id.setting_sound));
		tabhost.setCurrentTab(0);
	}
            
}





activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#000000" >

        <Button
            android:id="@+id/backToMain"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="返回"
            android:textColor="#ffffff" />

        <Button
            android:id="@+id/toRelation"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:text="关于"
            android:textColor="#ffffff" />
    </RelativeLayout>

    <TabHost
        android:id="@android:id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <!-- 此处为选项所在位置 -->

        <LinearLayout
            android:id="@+id/tab11"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/setbackground"
            android:orientation="vertical" >

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" >
            </TabWidget>

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" >

                <include layout="@layout/setting_password" />

                <include layout="@layout/setting_background" />
"
                <include layout="@layout/setting_sound" />
            </FrameLayout>
        </LinearLayout>
    </TabHost>

</LinearLayout>





setting_background.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/setting_background"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="登录界面背景修改:"
        android:textColor="#fff"
        android:textSize="30dp" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="拍照"
            android:textColor="#fff"
            android:textSize="22dp" />

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="从相册中选取"
            android:textColor="#fff"
            android:textSize="22dp" />
    </LinearLayout>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:text="音效界面背景修改:"
        android:textColor="#fff"
        android:textSize="30dp" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="拍照"
            android:textColor="#fff"
            android:textSize="22dp" />

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="从相册中选取"
            android:textColor="#fff"
            android:textSize="22dp" />
    </LinearLayout>

</LinearLayout>





setting_password.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/setting_password"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="10dp"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="原密码:"
        android:textColor="#fff"
        android:textSize="30dp" />

    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#fff"
        android:textSize="30dp" 
        android:password="true"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="新密码"
        android:textColor="#fff"
        android:textSize="30dp" />

    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#fff"
        android:textSize="30dp" 
        android:password="true"/>

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="确定重置密码"
        android:textColor="#fff"
        android:textSize="30dp" />

</LinearLayout>





setting_sound.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/setting_sound"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="2dp"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="Steady:"
            android:textColor="#fff"
            android:textSize="20sp" />

        <Button
            android:id="@+id/DoSteady"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Do"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/setSteady"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/set"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/stopSteady"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stop"
            android:textColor="#fff"
            android:textSize="15sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="Glad:"
            android:textColor="#fff"
            android:textSize="20sp" />

        <Button
            android:id="@+id/DoGlad"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Do"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/setGlad"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/set"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/stopGlad"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stop"
            android:textColor="#fff"
            android:textSize="15sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="Crazy:"
            android:textColor="#fff"
            android:textSize="20sp" />

        <Button
            android:id="@+id/DoCrazy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Do"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/setCrazy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/set"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/stopCrazy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stop"
            android:textColor="#fff"
            android:textSize="15sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="Ripe:"
            android:textColor="#fff"
            android:textSize="20sp" />

        <Button
            android:id="@+id/DoRipe"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Do"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/setRipe"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/set"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/stopRipe"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stop"
            android:textColor="#fff"
            android:textSize="15sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="Grief:"
            android:textColor="#fff"
            android:textSize="20sp" />

        <Button
            android:id="@+id/DoGrief"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Do"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/setGrief"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/set"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/stopGrief"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stop"
            android:textColor="#fff"
            android:textSize="15sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="Help:"
            android:textColor="#fff"
            android:textSize="20sp" />

        <Button
            android:id="@+id/DoHelp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Do"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/setHelp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/set"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/stopHelp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stop"
            android:textColor="#fff"
            android:textSize="15sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="Envy:"
            android:textColor="#fff"
            android:textSize="20sp" />

        <Button
            android:id="@+id/DoEnvy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Do"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/setEnvy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/set"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/stopEnvy"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stop"
            android:textColor="#fff"
            android:textSize="15sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="Yield:"
            android:textColor="#fff"
            android:textSize="20sp" />

        <Button
            android:id="@+id/DoYield"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Do"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/setYield"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/set"
            android:textColor="#fff"
            android:textSize="15sp" />

        <Button
            android:id="@+id/stopYield"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/stop"
            android:textColor="#fff"
            android:textSize="15sp" />
    </LinearLayout>

</LinearLayout>



最后附上源码:http://download.csdn.net/detail/double2hao/8933037

代码可能注释写的比较少,但是很多都是比较简单的东西,相信有了一定的UI学习经验的人都比较容易看懂,本人打算长期写博客分享所得,倘若有什么好的建议欢迎评论。  











你可能感兴趣的:(android,UI,tabhost,标题,界面)