現在每行的寬度根據文本的大小而變化。但是我希望每個列都有固定的大小,比如excel。應該改變什麼?它不應該被match_parent因爲家長有非常大的寬度..如何修復色譜柱寬度?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:textAppearance="?attr/textAppearanceListItem" />
<TextView
android:id="@+id/email"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:textAppearance="?attr/textAppearanceListItem" />
<TextView
android:id="@+id/short_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:textAppearance="?attr/textAppearanceListItem" />
</LinearLayout>
編輯
當前版本它表明類似
Chris [email protected] R
Apostole [email protected] -
但我要的是
Chris [email protected] R
Apostole [email protected] -
我試過@Priyank Prajapati的版本,但它s直到給前者佈局
添加靜態寬度 –
所有textviews變化'的android:layout_width = match_parent'並添加'機器人:體重= 1' –
變化'layout_width = 「0dp」'和'添加layout_weight = 「1」'; –