Android Layout Binder(線上將XML中View find出來,產生java代碼的工具)

來源:互聯網
上載者:User

標籤:android開發   android layout binde   

       廢話不多說,這是地址:http://android.lineten.net/layout.php。


有圖有真相,例如:



你的XML假如是這樣:


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


    <ImageView
        android:id="@+id/logo"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/ic_logo" />


    <Button
        android:id="@+id/version_btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/logo"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="@dimen/dp_54"
        android:textColor="@color/colFFFFFF"
        android:textSize="18sp"
        android:text="版本:1.0.0"
        android:background="@drawable/bg_version_btn" />


    <TextView
        android:id="@+id/companyname_tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@color/transparent"
        android:text="@string/companyname"
        android:textColor="@color/col8d8d8d"
        android:layout_marginBottom="@dimen/font_size_40"
        android:textSize="14sp" />


    <TextView 
        android:id="@+id/email_tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="@dimen/dp_22"
        android:text="郵箱:[email protected]"
        android:textColor="@color/colA0A0A0"
        />
</RelativeLayout>


產生代碼如下:
    // Content View Elements

    private ImageView mLogo;
    private Button mVersion_btn;
    private TextView mCompanyname_tv;
    private TextView mEmail_tv;

    // End Of Content View Elements

    private void bindViews() {

        mLogo = (ImageView) findViewById(R.id.logo);
        mVersion_btn = (Button) findViewById(R.id.version_btn);
        mCompanyname_tv = (TextView) findViewById(R.id.companyname_tv);
        mEmail_tv = (TextView) findViewById(R.id.email_tv);
    }





相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.