如何在android中为tabhost提供阴影和边框?

时间:2016-12-02 17:25:04

标签: android tabs border android-tabhost shadow

这是tabfragment中我的tabhost代码

 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginTop="70dip"
android:background="@drawable/shadow"
>
 <android.support.v4.app.FragmentTabHost
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
     >
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_weight="0" 
        />
</android.support.v4.app.FragmentTabHost>
<FrameLayout
    android:id="@+id/realtabcontent"
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="1"
  />  
</LinearLayout>

请帮助将drawable文件夹中的阴影添加到tabhost.Thanks提前。

0 个答案:

没有答案