哪个布局为3buttons / 3states Android应用程序

时间:2015-08-26 14:49:13

标签: android android-layout layout

我需要使用layout进行活动。 我有3个问题: - 为此选择最佳/简易布局。我尝试了relativeLayout和Linear(使用layout_weight),但是在屏幕截图中排列项目并不容易。 TableLayout会成为一个解决方案吗? - 按钮必须像截图,图像一样。我尝试使用带有drawableLeft =“@ drawable / ...”的按钮,但它没有用。我想只是添加带有ab背景的TextView并使它们成为clickabke。 - 黑色垂直线。起初我想让主要布局的背景为黑色,顶部有两个布局,两者之间有一个小的边距,以模拟黑色垂直线。

我的代码如下,但图像全部在彼此之上..

感谢您的任何提示/想法!

      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.huberlin.taptool.TT_Classes.Designer_Classes.TT_Settings2"
android:background="#000000">

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="35"
    android:background="#EE3333">

    <TextView
        android:id="@+id/cfg_about"
        android:text="@string/tt_cfg_aboutBtn"
        android:background="@drawable/disabled2x"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textStyle="bold"
        android:typeface="normal"

        android:singleLine="true" />

    <TextView
        android:id="@+id/cfg_save"
        android:text="@string/tt_cfg_saveBtn"
        android:background="@drawable/disabled2x"
        android:layout_width="fill_parent"
        android:layout_height="10dp"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textStyle="bold"
        android:typeface="normal"
        android:singleLine="true" />

    <TextView
        android:id="@+id/cfg_items"
        android:text="@string/tt_cfg_saveBtn"
        android:background="@drawable/disabled2x"
        android:layout_width="fill_parent"
        android:layout_height="10dp"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textStyle="bold"
        android:typeface="normal"
        android:singleLine="true" />

</LinearLayout>

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="65"
    android:background="#EFEFF4"
    android:layout_marginLeft="0.1dp">
</LinearLayout>

0 个答案:

没有答案