Improved borderless button
This commit is contained in:
parent
27f34cac6e
commit
088a1ad673
BIN
res/drawable-hdpi/navigation_expand.png
Normal file
BIN
res/drawable-hdpi/navigation_expand.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
res/drawable-hdpi/vertical_divider.png
Normal file
BIN
res/drawable-hdpi/vertical_divider.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 243 B |
13
res/drawable-v11/borderless_button.xml
Normal file
13
res/drawable-v11/borderless_button.xml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_pressed="true"><shape android:shape="rectangle">
|
||||||
|
<solid android:color="#33B5E5" />
|
||||||
|
</shape></item>
|
||||||
|
<item android:state_focused="true"><shape android:shape="rectangle">
|
||||||
|
<solid android:color="#33B5E5" />
|
||||||
|
</shape></item>
|
||||||
|
<item><shape android:shape="rectangle">
|
||||||
|
<solid android:color="@android:color/transparent" />
|
||||||
|
</shape></item>
|
||||||
|
|
||||||
|
</selector>
|
@ -1,10 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:state_pressed="true"><shape android:shape="rectangle">
|
<item android:state_pressed="true"><shape android:shape="rectangle">
|
||||||
<solid android:color="#33B5E5" />
|
<solid android:color="#FEBB20" />
|
||||||
</shape></item>
|
</shape></item>
|
||||||
<item android:state_focused="true"><shape android:shape="rectangle">
|
<item android:state_focused="true"><shape android:shape="rectangle">
|
||||||
<solid android:color="#33B5E5" />
|
<solid android:color="#FEBB20" />
|
||||||
</shape></item>
|
</shape></item>
|
||||||
<item><shape android:shape="rectangle">
|
<item><shape android:shape="rectangle">
|
||||||
<solid android:color="@android:color/transparent" />
|
<solid android:color="@android:color/transparent" />
|
||||||
|
@ -13,14 +13,25 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/txtvItemname"
|
android:layout_below="@id/txtvItemname"
|
||||||
/>
|
/>
|
||||||
<Button
|
<ImageButton
|
||||||
android:id="@+id/butAction"
|
android:id="@+id/butAction"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:text="More"
|
android:padding="8dp"
|
||||||
|
android:src="@drawable/navigation_expand"
|
||||||
android:background="@drawable/borderless_button"
|
android:background="@drawable/borderless_button"
|
||||||
android:layout_alignParentRight="true"
|
android:layout_alignParentRight="true"
|
||||||
android:focusable="false"
|
android:focusable="false"
|
||||||
|
android:focusableInTouchMode="false"
|
||||||
|
android:clickable="false"
|
||||||
/>
|
/>
|
||||||
|
<ImageView
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:src="@drawable/vertical_divider"
|
||||||
|
android:layout_alignParentRight="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_marginRight="28dp"
|
||||||
|
android:focusable="false"/>
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
@ -7,6 +7,7 @@ import de.podfetcher.util.Converter;
|
|||||||
import de.podfetcher.R;
|
import de.podfetcher.R;
|
||||||
import android.widget.ArrayAdapter;
|
import android.widget.ArrayAdapter;
|
||||||
import android.widget.Button;
|
import android.widget.Button;
|
||||||
|
import android.widget.ImageButton;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
@ -35,7 +36,7 @@ public class FeedItemlistAdapter extends ArrayAdapter<FeedItem> {
|
|||||||
convertView = inflater.inflate(R.layout.feeditemlist_item, null);
|
convertView = inflater.inflate(R.layout.feeditemlist_item, null);
|
||||||
holder.title = (TextView) convertView.findViewById(R.id.txtvItemname);
|
holder.title = (TextView) convertView.findViewById(R.id.txtvItemname);
|
||||||
holder.size = (TextView) convertView.findViewById(R.id.txtvItemsize);
|
holder.size = (TextView) convertView.findViewById(R.id.txtvItemsize);
|
||||||
holder.butAction = (Button) convertView.findViewById(R.id.butAction);
|
holder.butAction = (ImageButton) convertView.findViewById(R.id.butAction);
|
||||||
|
|
||||||
convertView.setTag(holder);
|
convertView.setTag(holder);
|
||||||
} else {
|
} else {
|
||||||
@ -49,6 +50,7 @@ public class FeedItemlistAdapter extends ArrayAdapter<FeedItem> {
|
|||||||
holder.title.setTypeface(Typeface.DEFAULT);
|
holder.title.setTypeface(Typeface.DEFAULT);
|
||||||
}
|
}
|
||||||
holder.size.setText(Converter.byteToString(item.getMedia().getSize()));
|
holder.size.setText(Converter.byteToString(item.getMedia().getSize()));
|
||||||
|
holder.butAction.setFocusable(false);
|
||||||
holder.butAction.setOnClickListener(onButActionClicked);
|
holder.butAction.setOnClickListener(onButActionClicked);
|
||||||
return convertView;
|
return convertView;
|
||||||
|
|
||||||
@ -57,6 +59,6 @@ public class FeedItemlistAdapter extends ArrayAdapter<FeedItem> {
|
|||||||
static class Holder {
|
static class Holder {
|
||||||
TextView title;
|
TextView title;
|
||||||
TextView size;
|
TextView size;
|
||||||
Button butAction;
|
ImageButton butAction;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,11 @@ import de.podfetcher.storage.DownloadRequester;
|
|||||||
import de.podfetcher.syndication.util.FeedItemMenuHandler;
|
import de.podfetcher.syndication.util.FeedItemMenuHandler;
|
||||||
|
|
||||||
public class FeedItemlistFragment extends SherlockListFragment {
|
public class FeedItemlistFragment extends SherlockListFragment {
|
||||||
|
@Override
|
||||||
|
public void onViewCreated(View view, Bundle savedInstanceState) {
|
||||||
|
this.getListView().setItemsCanFocus(true);
|
||||||
|
}
|
||||||
|
|
||||||
private static final String TAG = "FeedItemlistFragment";
|
private static final String TAG = "FeedItemlistFragment";
|
||||||
public static final String EXTRA_SELECTED_FEEDITEM = "extra.de.podfetcher.activity.selected_feeditem";
|
public static final String EXTRA_SELECTED_FEEDITEM = "extra.de.podfetcher.activity.selected_feeditem";
|
||||||
|
|
||||||
@ -59,6 +64,8 @@ public class FeedItemlistFragment extends SherlockListFragment {
|
|||||||
mActionMode.finish();
|
mActionMode.finish();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onListItemClick(ListView l, View v, int position, long id) {
|
public void onListItemClick(ListView l, View v, int position, long id) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user