亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Android實現圖片一邊的三角形邊框效果

發布時間:2021-09-27 11:28:08 來源:億速云 閱讀:119 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關如何使用Android實現圖片一邊的三角形邊框效果,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

在真實的APP當中,我們還會加上一個SrcollView控件,這樣子才可以進行不斷地上下瀏覽。我們這里主要是為了讓大家明白這個視圖是該如何實現的,就不演示SrcollView控件下的做法了,直接在線性布局下做一個簡單的說明。由于在線性布局上面一共具有四張圖,因此咱們可以先單獨編寫每一個imageview的自定義view,然后<include>的語法將他們組合起來,這樣可以提高UI開發的效率,進行協同工作與開發。首先咱們先實現左上角和右上角的triangle view.

在build.gradle文件當中相應地方添加如下代碼,導入相應的maven庫:

allprojects {    repositories {      ...      maven { url "https://jitpack.io" }    }}

之后在另一個build.gradle文件當中添加庫:

dependencies {      implementation 'com.github.shts:TriangleLabelView:1.1.2'  }

咱們的前期工作就這樣做好啦,現在就開始正式編寫咱們的每一個三角形邊框視圖啦,首先是第一個位于左上角的視圖

一.card_left_top.xml:

<?xml version="1.0" encoding="utf-8"?><android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:app="http://schemas.android.com/apk/res-auto"  android:layout_width="match_parent"  android:layout_height="match_parent">  <RelativeLayout    android:layout_width="match_parent"    android:layout_height="match_parent">    <ImageView      android:id="@+id/image"      android:scaleType="centerCrop"      android:src="@drawable/s_image_2"      android:layout_width="match_parent"      android:layout_height="match_parent" />    <jp.shts.android.library.TriangleLabelView      android:layout_width="match_parent"      android:layout_height="match_parent"      android:layout_alignParentLeft="true"      android:layout_alignParentTop="true"      app:backgroundColor="@color/yellow_900"      app:corner="leftTop"      app:labelBottomPadding="5dp"      app:labelCenterPadding="0dp"      app:labelTopPadding="10dp"      app:primaryText="New"      app:primaryTextColor="@color/yellow_500"      app:primaryTextSize="16sp"      app:secondaryText="01"      app:secondaryTextColor="@color/yellow_100"      app:secondaryTextSize="11sp" />  </RelativeLayout></android.support.v7.widget.CardView>

編寫好后在preview當中顯示如下:

下面是位于右上角的視圖

二.card_right_top.xml:

<?xml version="1.0" encoding="utf-8"?><android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:app="http://schemas.android.com/apk/res-auto"  android:layout_width="match_parent"  android:layout_height="match_parent">  <RelativeLayout    android:layout_width="match_parent"    android:layout_height="match_parent">    <ImageView      android:id="@+id/image"      android:scaleType="centerCrop"      android:src="@drawable/s_image_4"      android:layout_width="match_parent"      android:layout_height="match_parent" />    <jp.shts.android.library.TriangleLabelView      android:layout_width="match_parent"      android:layout_height="match_parent"      android:layout_alignParentRight="true"      android:layout_alignParentTop="true"      app:backgroundColor="@color/teal_900"      app:corner="rightTop"      app:labelBottomPadding="5dp"      app:labelCenterPadding="0dp"      app:labelTopPadding="10dp"      app:primaryText="New"      app:primaryTextColor="@color/teal_500"      app:primaryTextSize="16sp"      app:secondaryText="01"      app:secondaryTextColor="@color/teal_100"      app:secondaryTextSize="11sp" />  </RelativeLayout></android.support.v7.widget.CardView>

三.card_right_buttom.xml:

<?xml version="1.0" encoding="utf-8"?><android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:app="http://schemas.android.com/apk/res-auto"  android:layout_width="match_parent"  android:layout_height="match_parent">  <RelativeLayout    android:layout_width="match_parent"    android:layout_height="match_parent">    <ImageView      android:id="@+id/image"      android:scaleType="centerCrop"      android:src="@drawable/s_image_3"      android:layout_width="match_parent"      android:layout_height="match_parent" />    <jp.shts.android.library.TriangleLabelView      android:layout_width="match_parent"      android:layout_height="match_parent"      android:layout_alignParentRight="true"      android:layout_alignParentBottom="true"      app:backgroundColor="@color/pink_900"      app:corner="rightBottom"      app:labelTopPadding="10dp"      app:labelCenterPadding="5dp"      app:labelBottomPadding="0dp"      app:primaryText="New"      app:primaryTextColor="@color/pink_500"      app:primaryTextSize="16sp"      app:secondaryText="01"      app:secondaryTextColor="@color/pink_100"      app:secondaryTextSize="11sp" />  </RelativeLayout></android.support.v7.widget.CardView>

四.card_left_buttom.xml:

<?xml version="1.0" encoding="utf-8"?><android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:app="http://schemas.android.com/apk/res-auto"  android:layout_width="match_parent"  android:layout_height="match_parent">  <RelativeLayout    android:layout_width="match_parent"    android:layout_height="match_parent">    <ImageView      android:id="@+id/image"      android:src="@drawable/s_image_1"      android:scaleType="centerCrop"      android:layout_width="match_parent"      android:layout_height="match_parent" />    <jp.shts.android.library.TriangleLabelView      android:layout_width="match_parent"      android:layout_height="match_parent"      android:layout_alignParentLeft="true"      android:layout_alignParentBottom="true"      app:backgroundColor="@color/blue_900"      app:corner="leftBottom"      app:labelTopPadding="10dp"      app:labelCenterPadding="5dp"      app:labelBottomPadding="0dp"      app:primaryText="New"      app:primaryTextColor="@color/blue_500"      app:primaryTextSize="16sp"      app:secondaryText="01"      app:secondaryTextColor="@color/blue_100"      app:secondaryTextSize="11sp" />  </RelativeLayout>

最后咱們整合一下就OK啦!整合后的主活動的代碼為:

五.activity_main.xml:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  xmlns:app="http://schemas.android.com/apk/res-auto"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical"  tools:context=".Fragment2"> <LinearLayout    android:layout_width="match_parent"    android:layout_height="0dp"    android:layout_weight="1"    android:orientation="horizontal">    <include android:layout_width="0dp"      android:layout_height="match_parent"      android:layout_weight="1"      android:layout_margin="2dp"      android:id="@+id/left_top" layout="@layout/card_left_top" />    <include android:layout_width="0dp"      android:layout_height="match_parent"      android:layout_weight="1"      android:layout_margin="2dp"      android:id="@+id/right_top" layout="@layout/card_right_top" />  </LinearLayout>  <LinearLayout    android:layout_width="match_parent"    android:layout_height="0dp"    android:layout_weight="1"    android:orientation="horizontal">    <include android:layout_width="0dp"      android:layout_height="match_parent"      android:layout_weight="1"      android:layout_margin="2dp"      android:id="@+id/left_bottom" layout="@layout/card_left_bottom" />    <include android:layout_width="0dp"      android:layout_height="match_parent"      android:layout_weight="1"      android:layout_margin="2dp"      android:id="@+id/right_bottom" layout="@layout/card_right_bottom" />  </LinearLayout></LinearLayout>

關于“如何使用Android實現圖片一邊的三角形邊框效果”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

垦利县| 郸城县| 含山县| 卢龙县| 株洲市| 博爱县| 花莲县| 镇雄县| 防城港市| 磴口县| 杨浦区| 宝应县| 昌平区| 神农架林区| 明星| 高陵县| 松原市| 武宣县| 秦皇岛市| 兴安县| 星座| 绥中县| 襄樊市| 香河县| 本溪市| 临清市| 新丰县| 宝鸡市| 简阳市| 景洪市| 遂川县| 静安区| 扶风县| 义乌市| 澳门| 天镇县| 渭源县| 醴陵市| 公主岭市| 天峻县| 闽清县|