gpt4 book ai didi

android - 尝试制作布局画廊时,文本(最初)显示为暗淡

转载 作者:行者123 更新时间:2023-11-30 04:29:04 27 4
gpt4 key购买 nike

我正在尝试制作一个功能类似于 android 市场的图库,您可以在其中滚动(左/右)以查看免费或付费应用程序等...还可以在布局中上下滚动。

到目前为止,我只是让它加载了两个布局,它们都有一个简单的“Hello World!” TextView 和“嘿!你好吗?” TextView 。

它们加载正常,除了最初画廊位置 0 处的文本显示为暗淡,直到我滚动离开并返回到它。有什么我想念的吗?

public class HelloGallery extends Activity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

Gallery gallery = (Gallery)findViewById(R.id.gallery);
gallery.setAdapter(new ViewAdapter(this));

gallery.setOnItemClickListener(new OnItemClickListener()
{
public void onItemClick(AdapterView<?> parent, View v, int position, long id)
{
Toast.makeText(HelloGallery.this, "" + position, Toast.LENGTH_SHORT).show();
}
});
}
}


public class ViewAdapter extends BaseAdapter
{
public Context mContext;
public static final Integer[] viewId = { R.layout.helloworld, R.layout.heyhowareyou };
public int mGalleryItemBackground;

public ViewAdapter(Context context)
{
this.mContext = context;
TypedArray attr = context.obtainStyledAttributes(R.styleable.HelloGallery);
mGalleryItemBackground = attr.getResourceId(R.styleable.HelloGallery_android_galleryItemBackground, 0);
attr.recycle();
}

@Override
public int getCount()
{
return viewId.length;
}

public Object getItem(int position)
{
return position;
}

public long getItemId(int position)
{
return position;
}

@Override
public View getView(int position, View convertView, ViewGroup parent)
{
convertView = LayoutInflater.from(mContext).inflate(viewId[position], null);
convertView.setLayoutParams(new Gallery.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
convertView.setBackgroundResource(mGalleryItemBackground);
return convertView;
}
}

我也引用了一点。 Aavon 在这个线程中所做的正是我想要达到的目标......

主题链接:Get button to work in gallery with inflated layouts

有什么帮助吗?
提前致谢。

最佳答案

在我的布局 xml 中,我发现我没有为出现在屏幕上的文本设置颜色。当我设置该颜色时,文本在加载布局时不再变暗。

关于android - 尝试制作布局画廊时,文本(最初)显示为暗淡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8033585/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com