My Phone Butler (5) Harassment blocker layout interface:
Add blacklists, intercept messages, and phones
Main interface:
<?XML version= "1.0" encoding= "Utf-8"?><LinearLayoutxmlns:android= "Http://schemas.android.com/apk/res/android"Android:layout_width= "Match_parent"Android:layout_height= "Match_parent"android:orientation= "vertical" > <RelativelayoutAndroid:layout_width= "Match_parent"Android:layout_height= "Wrap_content"android:layout_gravity= "Center_vertical"Android:background= "#bcff70" > <ButtonAndroid:id= "@+id/abn_btn_add"Android:layout_width= "Wrap_content"Android:layout_height= "Wrap_content"Android:layout_alignparentright= "true"Android:text= "Add" /> <TextViewAndroid:id= "@+id/abn_tv_title"Android:layout_width= "Wrap_content"Android:layout_height= "Wrap_content"Android:layout_alignparentleft= "true"android:layout_centervertical= "true"android:gravity= "Center_vertical"Android:text= "blacklist management"android:textsize= "18SP" /> </Relativelayout> <FramelayoutAndroid:layout_width= "Match_parent"Android:layout_height= "Wrap_content"Android:layout_weight= "1" > <ListViewAndroid:id= "@+id/abn_lv"Android:layout_width= "Match_parent"Android:layout_height= "Wrap_content" > </ListView> <ProgressBarandroid:layout_gravity= "Center"Android:id= "@+id/abn_progressbar"Android:layout_width= "Wrap_content"Android:layout_height= "Wrap_content" /> </Framelayout></LinearLayout>
Layout of the ListView item:
<?XML version= "1.0" encoding= "Utf-8"?><Relativelayoutxmlns:android= "Http://schemas.android.com/apk/res/android"Android:layout_width= "Match_parent"Android:layout_height= "Wrap_content"android:padding= "5DP" > <TextViewAndroid:id= "@+id/black_tv_number"Android:layout_width= "Wrap_content"Android:layout_height= "Wrap_content"Android:layout_alignparentleft= "true"Android:layout_alignparenttop= "true"Android:text= " the"Android:textcolor= "@android: Color/black"android:textsize= "20SP" /> <TextViewAndroid:id= "@+id/black_tv_mode"Android:layout_width= "Wrap_content"Android:layout_height= "Wrap_content"Android:layout_below= "@id/black_tv_number"Android:layout_margintop= "3DP"Android:text= "Intercept Phone"Android:textcolor= "@android: Color/black"android:textsize= "18SP" /> <ImageViewAndroid:id= "@+id/black_iv_delete"Android:layout_width= "Wrap_content"Android:layout_height= "Wrap_content"Android:layout_alignparentright= "true"android:layout_centervertical= "true"android:src= "@drawable/btn_delete_selector" /></Relativelayout>
My Phone Butler (5) Harassment blocker layout interface