我正在嘗試使用右箭頭和垂直線以及其右側的2個文本視圖構建佈局。在設備中查看不可見,但在XML中可見
此佈局將在RecyclerView
被用於這是我使用的代碼,
<?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_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:clickable="true"
android:id="@+id/rootLayout"
>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:layout_margin="@dimen/app_margin"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="4dp"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
>
<View
android:layout_width="20dp"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:id="@+id/lineView"
android:layout_marginLeft="15dp"
android:background="@color/colorPrimary"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/name"
android:layout_toRightOf="@+id/lineView"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/type"
android:layout_toRightOf="@+id/lineView"
android:layout_below="@+id/name"
/>
<android.support.v7.widget.AppCompatImageView
android:layout_width="50dp"
android:layout_height="50dp"
app:srcCompat="@drawable/right_arrow"
android:layout_alignParentEnd="true"
android:layout_centerInParent="true"
android:id="@+id/right_arrow"
/>
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
這是上述佈局的結果
的當我在我的設備上運行輸出時,藍色線條不可見,但如圖所示以XML顯示
個我的問題
- 我如何讓它在我的設備可見?
- 藍線是非常大的我試過
wrap_content
但仍然沒有工作
我嘗試這樣做的代碼和藍線是在兩個編輯器和實際的裝置可見。你在用哪種設備? –
@NovoLucas設備是紅米Note 3 –
奇怪的是,即使我使用紅米,它是可見的。雖然解決問題的好處很多。 –