-1
嗨我想實現所需的輸出類似於下面的截圖。一個視圖行分隔,我需要將textview放置在文本視圖的中央和靠近文本視圖的圖像和文本的大小和顏色。如何實現它?如何將textviews中心放在近imageview和textview android中?
我的代碼如下:
我使用在頂部和底部,並用於TextView中的圖線,但它不實現精確的輸出。如何解決這個問題?請幫幫我。謝謝..
<View
android:id="@+id/view2"
android:layout_width="wrap_content"
android:layout_height="1dp"
android:layout_below="@+id/offers_price_layout"
android:layout_centerVertical="true"
android:layout_marginTop="5dp"
android:background="#cfcfcf" />
<RelativeLayout
android:id="@+id/size_color_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/view2"
android:orientation="horizontal"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="4"
android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_weight="1.4"
android:layout_height="fill_parent"
android:text="Size"
android:paddingRight="10dp"
android:gravity="center"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="0.3"
android:layout_height="fill_parent"
android:text="7"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:layout_marginTop="2dp"
/>
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="#cfcfcf"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="1.7"
android:layout_height="fill_parent"
android:text="Color"
android:gravity="center"
/>
<ImageView
android:layout_width="0dp"
android:layout_weight="0.6"
android:layout_height="fill_parent"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:src="@drawable/product_wish"
/>
</LinearLayout>
</RelativeLayout>
<View
android:id="@+id/view3"
android:layout_width="wrap_content"
android:layout_height="1dp"
android:layout_below="@+id/size_color_layout"
android:layout_centerVertical="true"
android:background="#cfcfcf" />
下面是我想要實現的截圖。
我可以知道降價的原因嗎? – Star