tabpageIndicator的背景是黑色的,怎么去掉?

问题描述

tabpageIndicator的背景是黑色的,怎么去掉?

android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
android:id="@+id/tpi"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<com.viewpagerindicator.TabPageIndicator
android:id="@+id/tpi2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

        />
</RelativeLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/vp"
    android:layout_width="match_parent"
     android:layout_height="match_parent"
    ></android.support.v4.view.ViewPager>
 package com.itheima.tab;

import android.app.Activity;
import android.os.Bundle;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import com.viewpagerindicator.TabPageIndicator;

public class HomeActivity extends Activity {

    private TabPageIndicator tpi;
    private TabPageIndicator tpi2;
    private ViewPager vp;

    private String[] title={"中国","北京","上海","深圳","广州","国际"};
    private int images[]={R.drawable.after1,R.drawable.after2,R.drawable.after3,R.drawable.after4,R.drawable.after5,R.drawable.after6};
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tpi = (TabPageIndicator) findViewById(R.id.tpi);
        tpi2 = (TabPageIndicator) findViewById(R.id.tpi2);
        vp = (ViewPager) findViewById(R.id.vp);
        initView();
    }
    private void initView() {
        vp.setAdapter(new ViewPagerAdapter());
        tpi.setViewPager(vp);
    }
    class ViewPagerAdapter extends PagerAdapter{

        @Override
        public int getCount() {
            // TODO Auto-generated method stub
            return title.length;
        }

        @Override
        public boolean isViewFromObject(View arg0, Object arg1) {
            // TODO Auto-generated method stub
            return arg0==arg1;
        }
        @Override
        public Object instantiateItem(ViewGroup container, int position) {
//          ImageView iv=new ImageView(getApplicationContext());
//          iv.setImageResource(images[position]);
            TextView iv=new TextView(getApplicationContext());
            iv.setText(title[position]);
            container.addView(iv);
            return iv;
        }
        @Override
        public void destroyItem(ViewGroup container, int position, Object object) {
            container.removeView((View) object);
        }

        /* (non-Javadoc)
         * @see android.support.v4.view.PagerAdapter#getPageTitle(int)
         */
        @Override
        public CharSequence getPageTitle(int position) {
            // TODO Auto-generated method stub
            return title[position];
        }

    }
}

<?xml version="1.0" encoding="utf-8"?>
package="com.itheima.tab"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    >
    <activity
        android:name="com.itheima.tab.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".HomeActivity"
         android:theme="@style/Theme.PageIndicatorDefaults"
        ></activity>
</application>

解决方案

我今天也遇到了同样的问题,你只需要将你这个页面的根部局设置背景色为白色即可:android:background="#ffffff"
<?xml version="1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#ffffff"
>

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

<!--<ListView-->
    <!--android:id="@+id/collection_lv"-->
    <!--android:layout_width="match_parent"-->
    <!--android:layout_height="match_parent"-->
    <!--/>-->

<com.viewpagerindicator.TabPageIndicator
    android:id="@+id/sc_indicator"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

<android.support.v4.view.ViewPager
    android:id="@+id/vp_sc"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
时间: 2025-01-30 02:06:51

tabpageIndicator的背景是黑色的,怎么去掉?的相关文章

Win10主题背景变成黑色的解决方法

  Win10系统自带的主题很多,在桌面上可以经常更新,让桌面赏心悦目.有用户发现,Win10系统桌面上的主题突然变成黑色,这不是大煞风景吗?如何解决呢? 我最初还以为是系统更新导致的,但通过几次更新后,问题依旧,在网上搜索也未找到解决办法.今天在一次无意间的更换主题时,竟然背景色不再是黑色的了,通过几次测试,终于找到了问题所在. Win10默认主题有3个,分别是"Windows"."线条和颜色"."鲜花".如果切换到"线条和颜色&qu

OpenCV加载PNG图片,显示图片背景是黑色的?

问题描述 OpenCV加载PNG图片,显示图片背景是黑色的? 如题,我用cvaddweighted将两张图片融合,想用一张png格式图片作为Logo添加水印,但是Logo位置背景是黑色的.是跟cvaddweighted中图像权值参数有关吗?还是需要其他方法实现? 解决方案 http://blog.sina.com.cn/s/blog_7cfb366d0101fhpq.html 解决方案二: 分割多通道数组成几个单通道数组或者从数组中提取一个通道cvAddWeighted( const CvArr

黑色背景-android5.0及以上版本的backgrounColor无效,都是透明色,也就是看到了背景的黑色

问题描述 android5.0及以上版本的backgrounColor无效,都是透明色,也就是看到了背景的黑色 titleBar是在xml里通过include标签添加进来的,背景色是白,但是在android5.0及以上版本中,背景色无效,都是透明的,求解! 解决方案 那就在他下面再放个有颜色的东西不就行了,比如textview

线程池-ImageLoader加载出来的PNG图像背景是黑色的?

问题描述 ImageLoader加载出来的PNG图像背景是黑色的? 我的ImageLoader的config: File cacheDir = StorageUtils.getOwnCacheDirectory(getApplicationContext(), "imageloader/Cache"); ImageLoaderConfiguration config = new ImageLoaderConfiguration .Builder(this) .memoryCacheEx

android-安卓图片上传生成缩略图,裁剪后背景为黑色。

问题描述 安卓图片上传生成缩略图,裁剪后背景为黑色. 用户在上传图片后图片可能会自定义,不一定为最大,如果为黑色的话,会影响用户体验. 请问我要如何做成透明的. 解决方案 http://zhidao.baidu.com/link?url=vqPoNNcVjXD2Lsb57JMZSuJd3gH8rfpJpr9iItIPZ7_PQ__8-rSho89hBSKpKCj--1e9x5S3oQpcc2zHXk1H-QaXFhA4BtI-X6GJdJxGeOK 解决方案二: 裁剪保存的时候注意压缩质量,最好

extjs做截图功能,加上jcrop插件后,背景是黑色,浏览出不来图片,不加插件,可以出来图片

问题描述 extjs做截图功能,加上jcrop插件后,背景是黑色,浏览出不来图片,不加插件,可以出来图片 就因为加上了jcrop插件之后,就这个样子了,就是浏览显示不出图片,也没报错,求大神帮忙 下面的代码, 解决方案 jcrop操作的对象并不是原始图片的了,另外生成了一个对象,你要用api来更改图片才行 jcrop_api变量申明为全局变量.img.setSrc(url)那句改为 jcrop_api.setImage(url)

vs2013 局部变量窗口-vs2013 局部变量窗口背景变为黑色

问题描述 vs2013 局部变量窗口背景变为黑色 有谁知道为什么我的vs2013 局部变量窗口会这样,全部是黑色的了,调试时候很不方便.急急急.谢谢. 解决方案 看图就懂了吧.工具-选项 然后找这个界面就看到了!项前景为字体颜色,项背为背景颜色!你的应该背景颜色是黑色! 解决方案二: 我的是这样的,没有什么不对的吧?

android加载自定义dialog,背景总是黑色的。不知道为什么。求解答

问题描述 android加载自定义dialog,背景总是黑色的.不知道为什么.求解答 java代码: LayoutInflater inflater = LayoutInflater.from(getActivity()); View v1 = inflater.inflate(R.layout.progress_dialog_item, null);// 得到加载view RelativeLayout layout = (RelativeLayout) v1.findViewById(R.id

WPF的canva生成图片的背景是黑色而不是透明,怎么解决?

问题描述 wpf使用canvas生成图片的代码://生成pngpublicvoidConvertToPng(Canvascanvas){if(mFonts.Count.Equals(0))return;doubled=canvas.Height;RenderTargetBitmapbmp=newRenderTargetBitmap(100,100,96,96,PixelFormats.Default);bmp.Render(canvas);stringfile=@"E:Picturetest.p