我正在尝试制作一个gridview,它下面会有一个带有角半径效果的图像和文本。到目前为止似乎不可能。这是我的Activity xml,它持有gridview:
void testFunction(int **array, int wSize, int hSize)
{
int row, col;
if(array == NULL) // check here
return;
for(row = 0; row < hSize; row++)
{
if(array[row] == NULL) // and here
return;
for(col = 0; col < wSize; col++)
{
array[row][col] = row * col;
}
}
}
这是适配器xml:
<ScrollView
android:layout_width="match_parent"
android:fillViewport="true"
android:layout_height="match_parent">
<GridView
android:id="@+id/gridview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:columnWidth="140dp"
android:padding="5dp"
android:layout_marginTop="10dp"
android:numColumns="auto_fit"
android:verticalSpacing="5dp"
android:horizontalSpacing="5dp"
android:stretchMode="columnWidth"
android:gravity="center"/>
</ScrollView>
最后这里是角半径魔法代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_height="wrap_content"
android:padding="2dp"
android:layout_margin="20dp"
android:background="@drawable/grid_corner_radius"
android:layout_width="wrap_content">
<ImageView
android:layout_width="200dp"
android:background="@drawable/cat_life"
android:layout_height="160dp"/>
<TextView
android:layout_width="200dp"
android:layout_height="40dp"
android:id="@+id/credit_textView"
android:gravity="center"
android:text="Life"
android:textColor="#FFFFFF"
android:background="@color/colorPrimary"
android:textSize="15dp"/>
</LinearLayout>
输出如下:
看到图像的清晰矩形边缘可见。可能的解决方案是什么?
答案 0 :(得分:4)
您可以使用CardView封装适配器xml并将cornerRadius设置为它。它应该可以工作。
将compile 'com.android.support:cardview-v7:24.2.0'
添加到您的应用程序gradle文件中。
<android.support.v7.widget.CardView xmlns:android="https://schemas.android.com/apk/res/android"
xmlns:card_view="https://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="2dp"
android:layout_margin="20dp"
card_view:cardCornerRadius="4dp">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_height="match_parent"
android:layout_width="match_parent">
<ImageView
android:layout_width="200dp"
android:background="@drawable/cat_life"
android:layout_height="160dp"/>
<TextView
android:layout_width="200dp"
android:layout_height="40dp"
android:id="@+id/credit_textView"
android:gravity="center"
android:text="Life"
android:textColor="#FFFFFF"
android:background="@color/colorPrimary"
android:textSize="15dp"/>
</LinearLayout>
</android.support.v7.widget.CardView>
答案 1 :(得分:2)
试试这段代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_height="wrap_content"
android:padding="2dp"
android:layout_margin="20dp"
android:background="@drawable/corners_layout"
android:layout_width="wrap_content">
<ImageView
android:layout_width="200dp"
android:layout_height="160dp"
android:background="@drawable/corners_image"/>
<TextView
android:layout_width="200dp"
android:layout_height="40dp"
android:id="@+id/credit_textView"
android:gravity="center"
android:text="Life"
android:textColor="#FFFFFF"
android:background="@drawable/corners_text"
android:textSize="15dp"/>
</LinearLayout>
将此样式用于布局:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/colorPrimaryJob"/>
<corners android:radius="20dp"/>
</shape>
将此样式用于textview:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/colorBlue"/>
<corners android:bottomLeftRadius="20dp" android:bottomRightRadius="20dp"/>
</shape>
将此样式用于imageview:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/colorPrimaryJob"/>
<corners android:topLeftRadius="20dp" android:topRightRadius="20dp"/>
</shape>