作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须创建一个应用程序的 UI 作为存放杂志的架子。我正在使用自定义 GridView ,网格元素由具有货架的杂志缩略图组成作为背景图像。
架子.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<GridView
android:id="@+id/gridView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:numColumns="4" >
</GridView>
</LinearLayout>
项目.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/grid">
<ImageView
android:id="@+id/imageView1"
android:layout_width="70dp"
android:layout_height="100dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="41dp"
android:src="@drawable/book1" />
</RelativeLayout>
图书馆 Activity .java
public class LibraryActivity extends Activity {
GridView grid = null;
ArrayList<Integer> image = new ArrayList<Integer>();
ImageView thumbnail;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.shelf);
image.add(R.drawable.book1);
image.add(R.drawable.book2);
image.add(R.drawable.book3);
image.add(R.drawable.book4);
System.out.println("before adapter");
grid = (GridView) findViewById(R.id.gridView1);
CustomAdapter adapter = new CustomAdapter(this, R.layout.item);
grid.setAdapter(adapter);
}
public class CustomAdapter extends BaseAdapter {
Context mContext = null;
int mitem = 0;
LayoutInflater mInflater = null;
public CustomAdapter(Context context, int item) {
this.mContext = context;
this.mitem = item;
this.mInflater = (LayoutInflater) context
.getSystemService(LAYOUT_INFLATER_SERVICE);
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return image.size();
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return null;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
System.out.println("****CHECKING 2**********");
convertView = mInflater.inflate(mitem, null);
System.out.println("****CHECKING 3**********");
thumbnail = (ImageView) convertView
.findViewById(R.id.imageView1);
System.out.println("****CHECKING 3**********");
}
thumbnail.setImageResource(image.get(position));
return convertView;
}
}
}
但是使用此代码仅显示带有杂志的架子。我想显示空架子以占据设备的整个屏幕。我怎样才能做到这一点??是否有任何替代方法来实现货架??
最佳答案
有一个很棒的项目叫做 Shelves由 Google 的 Romain Guy 制作。你应该检查一下。
关于android - 安卓杂志架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11244937/
我想了解带有实际信息的 python 资源 - 新闻、文章、论坛(英语/美国 - 讲)。我现在学习了python(我已经有很好的c/c++知识),我需要的不仅仅是官方文档/教程。我想了解Python编
我正在使用 Harism Page Curl(Open GL) https://github.com/harism/android_page_curl它的工作非常好 但在这个例子中,我发现的条件是我们
我正在制作一本电子书(杂志)。但我有 200 页(jpg 格式)。因此,为了避免为 200 个页面编写相同的行代码,我想了解如何使用 javascript 和 php 来完成此操作。 电子书中每个页面
我正在寻找用于为我的博客中有关软件架构的文章创建图表(插图)的工具。我经常阅读 Microsoft Architect's Journal,这本杂志的插图非常漂亮和全面。你能帮帮我吗——用什么工具来创
我是一名优秀的程序员,十分优秀!