修改主布局

pull/107/head
xufulong 5 years ago
parent 054f6dfb27
commit 0726a7f022
  1. 1
      app/src/main/java/com/frank/ffmpeg/activity/MainActivity.java
  2. 125
      app/src/main/res/layout/activity_main.xml

@ -21,7 +21,6 @@ public class MainActivity extends BaseActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
hideActionBar();
initViewsWithClick(
R.id.btn_audio,
R.id.btn_video,

@ -3,76 +3,73 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/btn_audio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="40dp"
android:layout_centerHorizontal="true"
android:text="@string/audio_handle"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_horizontal">
<Button
android:id="@+id/btn_video"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_handle"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/btn_audio"/>
<Button
android:id="@+id/btn_audio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="40dp"
android:text="@string/audio_handle"/>
<Button
android:id="@+id/btn_media"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/media_handle"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/btn_video"/>
<Button
android:id="@+id/btn_video"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_handle"
android:layout_marginTop="10dp" />
<Button
android:id="@+id/btn_play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/media_play"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/btn_media"
android:visibility="gone"/>
<Button
android:id="@+id/btn_media"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/media_handle"
android:layout_marginTop="10dp" />
<Button
android:id="@+id/btn_push"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_push"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/btn_play"/>
<Button
android:id="@+id/btn_play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/media_play"
android:layout_marginTop="10dp"
android:visibility="gone"/>
<Button
android:id="@+id/btn_live"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_live"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/btn_push"/>
<Button
android:id="@+id/btn_push"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_push"
android:layout_marginTop="10dp" />
<Button
android:id="@+id/btn_filter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_filter"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/btn_live"/>
<Button
android:id="@+id/btn_live"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_live"
android:layout_marginTop="10dp" />
<Button
android:id="@+id/btn_preview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_preview"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/btn_filter"/>
<Button
android:id="@+id/btn_filter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_filter"
android:layout_marginTop="10dp" />
<Button
android:id="@+id/btn_preview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/video_preview"
android:layout_marginTop="10dp" />
</LinearLayout>
</ScrollView>
</RelativeLayout>

Loading…
Cancel
Save