0

Nativescript-CardView プラグイン内にあるボタンの境界線を削除するのに苦労しています。

ここに画像の説明を入力

html

<CardView #item elevation="50" margin="10">
    <GridLayout rows="auto, auto, auto" columns="*, *, *">
        <Image src="~/images/shop.jpg" stretch="aspectFit" colSpan="3" row="0" ></Image>
        <Button text="&#xE88E;" class="Material btn" row="1" col="0" ></Button>
        <Button text="&#xE8CC;" class="Material btn" row="1" col="1" ></Button>
        <Button text="&#xE530;" class="Material btn" row="1" col="2" ></Button>
     </GridLayout>
</CardView>

CSS

.btn {
  font-size: 20;
  margin:4;
  border-color: transparent;
  border: 0;
  border-width: 0;
  border-style: none;
  background-color: transparent;
  padding:5px;
}
4

2 に答える 2

4

CardView とは関係ありません。Android 5.1 (Lollipop)+ のボタンのみ クラスでこれら 2 つのルールを試してみると、うまくいきます。これも必要ありませんborder-color: transparent

border-width: 0.1; background-color: transparent;

于 2016-08-03T19:58:24.253 に答える