Android布局:底部的按钮类似于微信

时间:2015-01-06 11:04:57

标签: android android-layout wechat

对于我的应用,我试图将按钮放在类似于微信应用的所有活动的底部,如下图所示:

enter image description here

现在我想到的一种方法就是在每个活动的底部添加<ImageButton>,但我不认为微信会这样做,因为你可以在活动之间滑动并且没有触发onCreate ,当滑动或触摸特定按钮时,活动总是在那里简单地切换。

我做了研究,发现可以使用split action bar甚至ViewFlipper。操作栏拆分是不可能的,因为按钮将被移回到操作栏,例如在横向模式下,因为我希望按钮总是像WeChat一样显示在底部。我看到的另一个选项是Tabbed界面,但我看到它,它可以显示在动作栏下方,而不像微信,即使动作栏也根据活动而改变。

问题:有没有人知道微信使用什么功能,所以我可以实现相同的功能?

2 个答案:

答案 0 :(得分:1)

一个想法是创建 BaseActivity ,其中包括您在整个应用程序中更喜欢的一般设计。在其他活动中,扩展 BaseActivity 。您还可以在一些不需要显示按钮的活动中扩展活动类,例如 LoginActivity

答案 1 :(得分:1)

here is code main class 


public class TabSample extends TabActivity {
    /** Called when the activity is first created. */

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        setTabs();

    }

    private void setTabs() {

        addTab("Wechat", R.drawable.tab_home, ShowList.class);
        addTab("Social", R.drawable.tab_search, UploadVideo.class);

        addTab("Contact Us", R.drawable.tab_home, Contactus.class);
        addTab("Setting", R.drawable.tab_search, DoNotDo.class);




    }

    private void addTab(String labelId, int drawableId, Class<?> c) {
        TabHost tabHost = getTabHost();
        Intent intent = new Intent(this, c);
        TabHost.TabSpec spec = tabHost.newTabSpec("tab" + labelId);

        View tabIndicator = LayoutInflater.from(this).inflate(
                R.layout.tab_indicator, getTabWidget(), false);
        TextView title = (TextView) tabIndicator.findViewById(R.id.title);
        title.setText(labelId);
        ImageView icon = (ImageView) tabIndicator.findViewById(R.id.icon);
        icon.setImageResource(drawableId);

        spec.setIndicator(tabIndicator);
        spec.setContent(intent);
        tabHost.addTab(spec);
    }
}

here is xml

<?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:background="#ffffff"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="1" />

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="2dp"
            android:layout_weight="0" />

    </LinearLayout>

</TabHost>