FlowLayout流式布局實(shí)現(xiàn)搜索清空歷史記錄

本文實(shí)例為大家分享了FlowLayout實(shí)現(xiàn)搜索清空歷史記錄的具體代碼,供大家參考,具體內(nèi)容如下

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、微信平臺(tái)小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了鄯善免費(fèi)建站歡迎大家使用!

效果圖:點(diǎn)擊搜索框?qū)⑺阉鞯臍v史在流式布局中展示出來(lái),清空歷史記錄就會(huì)將歷史清空,每次搜索后都存入sp中,每次進(jìn)入頁(yè)面都先判斷sp里是否有值并展示

FlowLayout流式布局實(shí)現(xiàn)搜索清空歷史記錄

首先需要導(dǎo)入一個(gè)module,下載地址

下載完這個(gè)工程后,需要將里面的flowlayout-lib導(dǎo)入到工程中,

FlowLayout流式布局實(shí)現(xiàn)搜索清空歷史記錄

導(dǎo)入工程的步驟:File - New - Import Module 選中這個(gè)flowlayout-lib

FlowLayout流式布局實(shí)現(xiàn)搜索清空歷史記錄

導(dǎo)入完成后,在項(xiàng)目的build.gradle中對(duì)導(dǎo)入的module進(jìn)行依賴

compile project(':flowlayout-lib') 

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 xmlns:app="http://schemas.android.com/apk/res-auto" 
 xmlns:tools="http://schemas.android.com/tools" 
 android:layout_width="match_parent" 
 android:layout_height="match_parent" 
 android:orientation="vertical" 
 android:padding="16dp" 
 tools:context="com.example.searchhistory.MainActivity"> 
 
 <LinearLayout 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:gravity="center_vertical" 
  android:orientation="horizontal"> 
 
  <EditText 
   android:id="@+id/edt" 
   android:layout_width="0dp" 
   android:layout_height="wrap_content" 
   android:layout_weight="4" /> 
 
  <Button 
   android:id="@+id/btn" 
   android:layout_width="0dp" 
   android:layout_height="wrap_content" 
   android:layout_weight="1" 
   android:text="搜索" /> 
 
  <Button 
   android:id="@+id/clear" 
   android:layout_width="0dp" 
   android:layout_height="wrap_content" 
   android:layout_weight="1" 
   android:text="清空" /> 
 </LinearLayout> 
 
 <ScrollView 
  android:layout_width="match_parent" 
  android:layout_height="match_parent"> 
 
  <com.zhy.view.flowlayout.TagFlowLayout 
   android:id="@+id/id_flowlayout" 
   android:layout_width="fill_parent" 
   android:layout_height="wrap_content" 
   app:max_select="-1" /> 
 </ScrollView> 
</LinearLayout> 

tv.xml

<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_marginLeft="5dp" 
 android:layout_marginRight="5dp" 
 android:layout_marginTop="10dp" 
 android:background="@drawable/tag_bg" 
 android:text="Helloworld" 
 android:textColor="#999999" 
 android:textSize="16sp"> 
 
</TextView> 

drawable下面創(chuàng)建

checked_bg.xml

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
 <solid android:color="#ffffff" /> 
 <corners android:radius="2dp" /> 
 <stroke 
  android:width="1dp" 
  android:color="#dddddd" /> 
 
 <padding 
  android:bottom="5dp" 
  android:left="14dp" 
  android:right="14dp" 
  android:top="5dp" /> 
 
</shape> 

normal_bg.xml

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
 <solid android:color="#ffffff" /> 
 <corners android:radius="2dp" /> 
 <stroke 
  android:width="1dp" 
  android:color="#dddddd" /> 
 <padding 
  android:bottom="5dp" 
  android:left="14dp" 
  android:right="14dp" 
  android:top="5dp" /> 
</shape> 

tag_bg.xml

<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
 <item android:drawable="@drawable/checked_bg" android:state_checked="true"> 
 
 </item> 
 <item android:drawable="@drawable/normal_bg"></item> 
</selector> 

text_color.xml

<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
 
 <item android:color="#999999" android:state_checked="true" /> 
 <item android:color="#f692ff" /> 
 
</selector> 

MainActivity

public class MainActivity extends AppCompatActivity { 
 private TagFlowLayout mFlowLayout; 
 private EditText editText; 
 private Button button; 
 private List<String> strings; 
 String history=""; 
 int a=0; 
 List<String> historylist = new ArrayList<>(); 
 //布局管理器 
 private LayoutInflater mInflater; 
 //流式布局的子布局 
 private TextView tv; 
 public Handler handler = new Handler() { 
  @Override 
  public void handleMessage(Message msg) { 
   switch (msg.what) { 
    case 1: 
     mFlowLayout.setAdapter(new TagAdapter<String>(strings) { 
      @Override 
      public View getView(FlowLayout parent, int position, String s) { 
       tv = (TextView) mInflater.inflate(R.layout.tv, 
         mFlowLayout, false); 
       tv.setVisibility(View.VISIBLE); 
       tv.setText(s); 
       return tv; 
      } 
     }); 
     break; 
 
   } 
   super.handleMessage(msg); 
  } 
 }; 
 private Button clearbtn; 
 
 
 @RequiresApi(api = Build.VERSION_CODES.M) 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
  mInflater = LayoutInflater.from(this); 
  mFlowLayout = (TagFlowLayout) findViewById(R.id.id_flowlayout); 
  editText = (EditText) findViewById(R.id.edt); 
  button = (Button) findViewById(R.id.btn); 
  clearbtn = findViewById(R.id.clear); 
 
  final SharedPreferences preferences = getSharedPreferences("config", 0); 
  final SharedPreferences.Editor editor = preferences.edit(); 
 
  strings = new ArrayList<>(); 
  final String string = preferences.getString("string", " "); 
 
  String[] split = string.split(" "); 
  if (split.length>0&&!string.equals(" ")){ 
   for (int i=0;i<split.length;i++){ 
    strings.add(split[i]); 
   } 
   handler.sendEmptyMessageDelayed(1, 0); 
  } 
 
 
  clearbtn.setOnClickListener(new View.OnClickListener() { 
   @Override 
   public void onClick(View view) { 
    history=""; 
    historylist.clear(); 
    editor.clear().commit(); 
    //清空下面的 
    strings.clear(); 
    handler.sendEmptyMessageDelayed(1, 0); 
   } 
  }); 
 
 
  button.setOnClickListener(new View.OnClickListener() { 
   @RequiresApi(api = Build.VERSION_CODES.M) 
   @Override 
   public void onClick(View v) { 
    String string = preferences.getString("string", ""); 
 
    historylist.clear(); 
 
    if (!editText.getText().toString().trim().equals("")) { 
     String aa = editText.getText().toString().trim(); 
 
     Set<String> set = new ArraySet<>(); 
     set.add(aa); 
     historylist.add(aa); 
     a++; 
     history+= aa+" "; 
     for (int i=0;i<historylist.size();i++){ 
      editor.putString("string",history).commit(); 
      strings.add(historylist.get(i)); 
     } 
     //通知handler更新UI 
     handler.sendEmptyMessageDelayed(1, 0); 
    }else{ 
     Toast.makeText(MainActivity.this, "請(qǐng)輸入要搜索的內(nèi)容", Toast.LENGTH_SHORT).show(); 
    } 
   } 
  }); 
  //流式布局tag的點(diǎn)擊方法 
  mFlowLayout.setOnTagClickListener(new TagFlowLayout.OnTagClickListener() { 
   @Override 
   public boolean onTagClick(View view, int position, FlowLayout parent) { 
    Toast.makeText(MainActivity.this, tv.getText(), Toast.LENGTH_SHORT).show(); 
    return true; 
   } 
  }); 
 } 
} 

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

網(wǎng)頁(yè)名稱:FlowLayout流式布局實(shí)現(xiàn)搜索清空歷史記錄
分享地址:http://muchs.cn/article32/jojesc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)公司網(wǎng)站內(nèi)鏈、建站公司移動(dòng)網(wǎng)站建設(shè)、響應(yīng)式網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)