码迷,mamicode.com
首页 > 其他好文 > 详细

FlatUI

时间:2014-12-14 15:50:58      阅读:588      评论:0      收藏:0      [点我收藏+]

标签:des   android   style   blog   http   io   ar   color   os   

Github  https://github.com/eluleci/FlatUI

 

其实有时是弄不清楚GitHub下载程序如何使用, 有时直接import然后add library即可, 有时却不可以

这个项目就是这种不可以的情况, 那就自己修改吧

  

  bubuko.com,布布扣  bubuko.com,布布扣

 

  然后在自己的程序中就可以对应使用 Flat UI了

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:flatui="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:orientation="vertical">
    
    <com.cengalabs.flatui.views.FlatEditText
        android:id="@+id/ed_test"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Test" />
    
    <com.cengalabs.flatui.views.FlatButton
        android:id="@+id/bt_test"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Test" />
    
    <com.cengalabs.flatui.views.FlatTextView
        android:id="@+id/tv_test"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Test" />
    
</LinearLayout>
//FlatTest

package mirror.android.flattest;

import com.cengalabs.flatui.views.FlatUI;

import android.app.Activity;
import android.os.Bundle;

public class FlatTest extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        
        FlatUI.initDefaultValues(this);
        
        FlatUI.setDefaultTheme(FlatUI.BLOOD);
        
        getActionBar().setBackgroundDrawable(FlatUI.getActionBarDrawable(this ,FlatUI.BLOOD, false));
        
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_flat_test);
    }
}

 

 

  bubuko.com,布布扣

FlatUI

标签:des   android   style   blog   http   io   ar   color   os   

原文地址:http://www.cnblogs.com/iMirror/p/4162591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!