Android:TextView背景被拉伸

时间:2017-05-19 20:49:24

标签: android android-linearlayout

我想实现以下布局: enter image description here

我的问题是右按钮的背景是拉伸的。它试图这样做:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/tab_gradient_background"
    android:weightSum="1"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight=".1"
        android:background="@color/button_released"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/highscoreTextView"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_weight=".7"
            android:background="@drawable/menu_button_background_released"
            android:gravity="center"
            android:text="@string/highscore"
            android:textColor="@color/white"
            android:textSize="@dimen/menu_text" />

        <TextView
            android:id="@+id/highscoreNumberTextView"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:layout_weight=".3"
            android:background="@drawable/menu_button_background_released_mirrored"
            android:text="0"
            android:textColor="@color/white"
            android:textSize="@dimen/menu_text" />

    </LinearLayout>
</LinearLayout>

看起来像这样:

enter image description here

任何想法如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我认为这并不容易,但我通过“9patch”图像以某种方式纠正了这一点。 这是代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="100"
    android:layout_marginTop="5dp"
    android:orientation="horizontal">

    <TextView
        android:id="@+id/highscoreTextView"
        android:layout_width="0dp"
        android:layout_weight="70"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:background="@drawable/menu_button_background_released"
        android:gravity="center"
        android:text="High Scores"
        android:textColor="#ffffff"
        android:textSize="15sp" />

    <TextView
        android:id="@+id/highscoreNumberTextView"
        android:layout_width="0dp"
        android:layout_weight="30"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:background="@drawable/menu_button_background_released_mirrored"
        android:text="0"
        android:textColor="#ffffff"
        android:textSize="15sp" />

</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="100"
    android:layout_marginTop="5dp"
    android:orientation="horizontal">

    <TextView
        android:layout_width="0dp"
        android:layout_weight="66"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:background="@drawable/menu_button_background_released"
        android:gravity="center"
        android:text="High Scores"
        android:textColor="#ffffff"
        android:textSize="15sp" />

    <TextView
        android:layout_width="0dp"
        android:layout_weight="34"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:background="@drawable/menu_button_background_released_mirrored"
        android:text="0"
        android:textColor="#ffffff"
        android:textSize="15sp" />

</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="100"
    android:layout_marginTop="5dp"
    android:orientation="horizontal">

    <TextView
        android:layout_width="0dp"
        android:layout_weight="62"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:background="@drawable/menu_button_background_released"
        android:gravity="center"
        android:text="High Scores"
        android:textColor="#ffffff"
        android:textSize="15sp" />

    <TextView
        android:layout_width="0dp"
        android:layout_weight="38"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:background="@drawable/menu_button_background_released_mirrored"
        android:text="0"
        android:textColor="#ffffff"
        android:textSize="15sp" />

</LinearLayout>

image 9 patch image version

mirror image 9 patch version